diff options
author | Matthias Huetsch <mhu@openoffice.org> | 2002-09-01 17:48:30 +0000 |
---|---|---|
committer | Matthias Huetsch <mhu@openoffice.org> | 2002-09-01 17:48:30 +0000 |
commit | 419bd1130842b739595743e69ba72e8afdb70453 (patch) | |
tree | 7caf4484c020c90b0a9134bfc366798d3d533c5d /cppuhelper/source/makefile.mk | |
parent | ffaf3f5fb3dee06d26b67f99934addb3dfac0573 (diff) |
#102715# Fixed C++ library versioning (UNIXVERSIONNAMES=UDK).
Diffstat (limited to 'cppuhelper/source/makefile.mk')
-rw-r--r-- | cppuhelper/source/makefile.mk | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/cppuhelper/source/makefile.mk b/cppuhelper/source/makefile.mk index a34214c35b5c..808d8f32d211 100644 --- a/cppuhelper/source/makefile.mk +++ b/cppuhelper/source/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.25 $ +# $Revision: 1.26 $ # -# last change: $Author: dbo $ $Date: 2002-06-14 13:20:19 $ +# last change: $Author: mhu $ $Date: 2002-09-01 18:48:30 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -63,10 +63,15 @@ PRJ=.. PRJNAME=cppuhelper TARGET=cppuhelper + NO_BSYMBOLIC=TRUE ENABLE_EXCEPTIONS=TRUE USE_DEFFILE=TRUE +.IF "$(OS)" != "WNT" +UNIXVERSIONNAMES=UDK +.ENDIF # WNT + # --- Settings ----------------------------------------------------- .INCLUDE : settings.mk @@ -156,7 +161,11 @@ SLOFILES= \ $(SLO)$/access_control.obj \ $(SLO)$/macro_expander.obj +.IF "$(UNIXVERSIONNAMES)" != "" +SHL1TARGET=$(TARGET)$(COMID) +.ELSE SHL1TARGET=$(TARGET)$(UDK_MAJOR)$(COMID) +.ENDIF # UNIXVERSIONNAMES SHL1STDLIBS= \ $(CPPULIB) \ @@ -192,4 +201,3 @@ CFLAGS += -D__DIAGNOSE=$(diag) .ENDIF .INCLUDE : target.mk - |