diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2001-06-19 13:23:40 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2001-06-19 13:23:40 +0000 |
commit | a4d54292da2111e0347f38df6844b6cb4d8fdcd3 (patch) | |
tree | 40582d31d699d715677403651761275e6687d1d1 /soltools/giparser/makefile.mk | |
parent | 9558db82d6346f91a9964132c95dff14290323dd (diff) |
win32; add use_perl.mk
Diffstat (limited to 'soltools/giparser/makefile.mk')
-rw-r--r-- | soltools/giparser/makefile.mk | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/soltools/giparser/makefile.mk b/soltools/giparser/makefile.mk index bc743eb50db2..7d54788409aa 100644 --- a/soltools/giparser/makefile.mk +++ b/soltools/giparser/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.3 $ +# $Revision: 1.4 $ # -# last change: $Author: hr $ $Date: 2001-06-13 15:16:08 $ +# last change: $Author: hjs $ $Date: 2001-06-19 14:23:40 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -65,16 +65,17 @@ PRJ=.. PRJNAME=soltools TARGET=soltools_giparser TARGETTYPE=CUI - +NO_SHL_DESCRIPTION=TRUE # --- Settings ----------------------------------------------------- .INCLUDE : settings.mk - - +.INCLUDE : use_perl.mk # --- Files -------------------------------------------------------- +DEPOBJFILES=$(SLO)$/GenInfoParser.obj + OBJFILES=\ $(OBJ)$/gen_info.obj \ $(OBJ)$/gi_list.obj \ @@ -87,10 +88,22 @@ SLOFILES=\ $(SLO)$/gi_parse.obj \ $(SLO)$/st_gilrw.obj -# --- Targets ------------------------------------------------------ +SHL1TARGET= GenInfoParser +SHL1LIBS= $(SLB)$/soltools_support.lib $(SLB)$/soltools_giparser.lib +SHL1IMPLIB= i$(TARGET) +SHL1DEF= $(MISC)$/$(SHL1TARGET).def +SHL1OBJS= $(SLO)$/GenInfoParser.obj +.IF "$(GUI)"=="WNT" +SHL1STDLIBS= msvcirt.lib $(PERLLIB) +.ENDIF +DEF1NAME= $(SHL1TARGET) +DEF1DEPN= makefile.mk +DEF1DES= GenInfoParser +DEF1EXPORTFILE= geninfoparser.dxp -.INCLUDE : target.mk +# --- Targets ------------------------------------------------------ +.INCLUDE : target.mk |