diff options
author | Joachim Lingner <jl@openoffice.org> | 2001-04-19 14:12:00 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2001-04-19 14:12:00 +0000 |
commit | 69995796449e513800199ec319d82a46e8eee44b (patch) | |
tree | 1f13a19fe2e21094f4289119feb18b821f890b43 /salhelper/test/Symbols/makefile.mk | |
parent | 8e773af5ecfba8e3fd105c0e6daa6eb52765628b (diff) |
new
Diffstat (limited to 'salhelper/test/Symbols/makefile.mk')
-rw-r--r-- | salhelper/test/Symbols/makefile.mk | 57 |
1 files changed, 46 insertions, 11 deletions
diff --git a/salhelper/test/Symbols/makefile.mk b/salhelper/test/Symbols/makefile.mk index 45fc345650f6..6903a39d1a20 100644 --- a/salhelper/test/Symbols/makefile.mk +++ b/salhelper/test/Symbols/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.1 $ +# $Revision: 1.2 $ # -# last change: $Author: jl $ $Date: 2001-03-29 14:36:29 $ +# last change: $Author: jl $ $Date: 2001-04-19 15:12:00 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -62,25 +62,22 @@ PRJ=..$/..$/ -PRJNAME=dtrans -TARGET=dndTest +PRJNAME=salhelper +TARGET=dynloader +TARGET1=samplelib TARGETTYPE=CUI LIBTARGET=NO -#USE_DEFFILE= TRUE NO_BSYMBOLIC= TRUE ENABLE_EXCEPTIONS=TRUE BOOTSTRAP_SERVICE=FALSE # --- Settings --- -.INCLUDE : svpre.mk .INCLUDE : settings.mk -.INCLUDE : sv.mk # --- Files --- -# CFLAGS+=/GR -DUNICODE -D_UNICODE UNOUCRDEP= $(SOLARBINDIR)$/applicat.rdb UNOUCRRDB= $(SOLARBINDIR)$/applicat.rdb @@ -92,13 +89,44 @@ CPPUMAKERFLAGS += -C UNOUCROUT= $(OUT)$/inc .ENDIF +#RTTI on +.IF "$(OS)" == "WNT" +CFLAGS+= -GR +.ENDIF + + # UNOTYPES= com.sun.star.lang.XInitialization \ - +#--------------------------------------------------------------------------- +# Build the test library which is loaded by the +# RealDynamicLoader + +SLOFILES= \ + $(SLO)$/samplelib.obj + +LIB1TARGET=$(SLB)$/$(TARGET1).lib +LIB1OBJFILES= \ + $(SLO)$/samplelib.obj + +SHL1TARGET= $(TARGET1) -.IF "$(depend)" != "" +SHL1STDLIBS= \ + $(CPPULIB) \ + $(CPPUHELPERLIB) \ + $(SALLIB) -.ENDIF # depend +SHL1DEPN= +SHL1IMPLIB= i$(TARGET1) +SHL1LIBS= $(SLB)$/$(TARGET1).lib +SHL1DEF= $(MISC)$/$(SHL1TARGET).def + +DEF1NAME= $(SHL1TARGET) +DEFLIB1NAME =$(TARGET1) +DEF1DEPN= $(MISC)$/$(SHL1TARGET).flt + +#DEF1EXPORTFILE= exports.dxp + +# ------------------------------------------------------------------------------ APP1NOSAL=TRUE @@ -128,3 +156,10 @@ APP1DEF= $(MISC)\$(APP1TARGET).def .INCLUDE : target.mk + +$(MISC)$/$(SHL1TARGET).flt: makefile.mk + @echo ------------------------------ + @echo Making: $@ + @echo __CT>>$@ + + |