summaryrefslogtreecommitdiffstats
path: root/svx/source/options
diff options
context:
space:
mode:
authorghiggins <ghiggins@openoffice.org>2002-08-12 09:59:30 +0000
committerghiggins <ghiggins@openoffice.org>2002-08-12 09:59:30 +0000
commit3c81b5effaeec80ae8ba11c0b8f47f93f87397e3 (patch)
tree81118f20e07a3ea482be851b4829d0c26acce8c2 /svx/source/options
parent#101785# minor HC changes (diff)
downloadcore-3c81b5effaeec80ae8ba11c0b8f47f93f87397e3.tar.gz
core-3c81b5effaeec80ae8ba11c0b8f47f93f87397e3.zip
#99344# Don't include SSO in OpenOffice
Diffstat (limited to 'svx/source/options')
-rw-r--r--svx/source/options/makefile.mk32
1 files changed, 22 insertions, 10 deletions
diff --git a/svx/source/options/makefile.mk b/svx/source/options/makefile.mk
index c9753139cd7c..7582f7dee2de 100644
--- a/svx/source/options/makefile.mk
+++ b/svx/source/options/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.14 $
+# $Revision: 1.15 $
#
-# last change: $Author: ghiggins $ $Date: 2002-08-12 09:13:29 $
+# last change: $Author: ghiggins $ $Date: 2002-08-12 10:59:30 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -108,8 +108,11 @@ CXXFILES = \
multipat.cxx \
multifil.cxx \
optextbr.cxx \
- srchcfg.cxx \
- optsso.cxx
+ srchcfg.cxx
+
+.IF "$(BUILD_SOSL)" == ""
+ CXXFILES += optsso.cxx
+.ENDIF
SRCFILES = \
optasian.src \
@@ -124,8 +127,11 @@ SRCFILES = \
optgrid.src \
optinet2.src \
multipat.src \
- optextbr.src \
- optsso.src
+ optextbr.src
+
+.IF "$(BUILD_SOSL)" == ""
+ SRCFILES += optsso.src
+.ENDIF
SLOFILES= \
$(SLO)$/asiancfg.obj \
@@ -146,8 +152,11 @@ SLOFILES= \
$(SLO)$/multipat.obj \
$(SLO)$/multifil.obj \
$(SLO)$/optextbr.obj \
- $(SLO)$/srchcfg.obj \
- $(SLO)$/optsso.obj
+ $(SLO)$/srchcfg.obj
+
+.IF "$(BUILD_SOSL)" == ""
+ SLOFILES += $(SLO)$/optsso.obj
+.ENDIF
SVXLIGHTOBJFILES= \
$(OBJ)$/adritem.obj
@@ -164,8 +173,11 @@ EXCEPTIONSFILES= \
$(SLO)$/optlingu.obj \
$(SLO)$/optaccessibility.obj \
$(SLO)$/optsave.obj \
- $(SLO)$/optpath.obj \
- $(SLO)$/optsso.obj
+ $(SLO)$/optpath.obj
+
+.IF "$(BUILD_SOSL)" == ""
+ EXCEPTIONSFILES += $(SLO)$/optsso.obj
+.ENDIF
# --- Targets -------------------------------------------------------