diff options
author | Patrick Luby <pluby@openoffice.org> | 2001-03-07 06:09:06 +0000 |
---|---|---|
committer | Patrick Luby <pluby@openoffice.org> | 2001-03-07 06:09:06 +0000 |
commit | 5fa59127c08ba0e71943f338ecd3bd433fdd1200 (patch) | |
tree | 739dad2ddb0eab4bdcdc241f7a158a95a99ecc71 /ucb/source | |
parent | 9e4d4c4938002a3fbeea722bccb97369ee46aa4b (diff) |
Added Mac OS X support
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/core/makefile.mk | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/ucb/source/core/makefile.mk b/ucb/source/core/makefile.mk index 1a1633a1c718..a2902a34c5a2 100644 --- a/ucb/source/core/makefile.mk +++ b/ucb/source/core/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.10 $ +# $Revision: 1.11 $ # -# last change: $Author: pluby $ $Date: 2001-03-02 07:19:45 $ +# last change: $Author: pluby $ $Date: 2001-03-07 07:09:06 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -79,9 +79,14 @@ SLOFILES=\ $(SLO)$/ucbserv.obj \ $(SLO)$/ucbstore.obj \ $(SLO)$/ucbprops.obj \ - $(SLO)$/provprox.obj \ - $(SLO)$/ucbcmds.obj \ + $(SLO)$/provprox.obj + +.IF "$(UPD)">="619" +SLOFILES+=$(SLO)$/ucbcmds.obj \ $(SLO)$/coreremotecontentbroker.obj +.ELSE +SLOFILES+=$(SLO)$/ucbcfg.obj +.ENDIF LIB1TARGET=$(SLB)$/_$(TARGET).lib LIB1OBJFILES=$(SLOFILES) @@ -105,6 +110,11 @@ DEF1EXPORT2 =component_writeInfo DEF1EXPORT3 =component_getFactory DEF1DES=Universal Content Broker +# Make symbol renaming match library name for Mac OS X +.IF "$(OS)"=="MACOSX" +SYMBOLPREFIX=$(TARGET)$(UCB_MAJOR) +.ENDIF + .INCLUDE: target.mk $(MISC)$/$(SHL1TARGET).flt: |