diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-01-10 11:53:16 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-01-10 11:53:16 +0000 |
commit | ae56f69e47842b29c3ccd42156b35cfe8034d6b8 (patch) | |
tree | 5ad8c4423bbf401e58d5b3d89bb812e2952231bf /sax | |
parent | 8b84aa953ab6675ea5085e2fe2235ae51c5abbc0 (diff) |
INTEGRATION: CWS xmlfilter02 (1.4.12); FILE MERGED
2007/03/22 15:19:21 hub 1.4.12.8: remove the dependency on unotools like we removed the one on tools.
This should allow to build properly
2007/03/20 14:51:37 dr 1.4.12.7: comment out tools dependent code
2007/03/15 10:46:01 dr 1.4.12.6: #i10000#
2007/03/14 18:01:10 dr 1.4.12.5: RESYNC: (1.4-1.5); FILE MERGED
2007/01/24 14:27:58 cl 1.4.12.4: added new fast parser, removed prototyp saxparser
2006/05/08 15:38:05 cl 1.4.12.3: fixed unix build problem
2006/05/08 14:27:12 cl 1.4.12.2: new token based sax implementation
2006/02/14 18:34:56 cl 1.4.12.1: added initial libxml2 wrapper
Diffstat (limited to 'sax')
-rw-r--r-- | sax/util/makefile.mk | 46 |
1 files changed, 30 insertions, 16 deletions
diff --git a/sax/util/makefile.mk b/sax/util/makefile.mk index 93cb514dfdeb..e9cdfbbd5a42 100644 --- a/sax/util/makefile.mk +++ b/sax/util/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.5 $ +# $Revision: 1.6 $ # -# last change: $Author: vg $ $Date: 2007-02-06 12:57:23 $ +# last change: $Author: obo $ $Date: 2008-01-10 12:53:16 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -32,31 +32,45 @@ # MA 02111-1307 USA # #************************************************************************* + PRJ=.. PRJNAME=sax -TARGET = sax.uno -NO_BSYMBOLIC=TRUE -ENABLE_EXCEPTIONS=TRUE +TARGET=sax + +USE_DEFFILE=TRUE + # --- Settings ----------------------------------------------------- + .INCLUDE : settings.mk -DLLPRE = -#----------------------------------------------------------- +# ------------------------------------------------------------------ -SHL1TARGET= $(TARGET) +LIB1TARGET= $(SLB)$/$(TARGET).lib +LIB1FILES=\ + $(SLB)$/saxtools.lib + +# sax + +SHL1TARGET= $(TARGET)$(UPD)$(DLLPOSTFIX) SHL1IMPLIB= i$(TARGET) +SHL1USE_EXPORTS=ordinal +SHL1LIBS= $(LIB1TARGET) SHL1STDLIBS= \ - $(SALLIB) \ - $(CPPULIB) \ - $(CPPUHELPERLIB)\ - $(EXPAT3RDLIB) + $(VOSLIB) \ + $(CPPULIB) \ + $(CPPUHELPERLIB)\ + $(COMPHELPERLIB)\ + $(RTLLIB) \ + $(SALLIB) \ + $(ONELIB) \ + $(SALHELPERLIB) -SHL1LIBS= $(SLB)$/expatwrap.lib -SHL1VERSIONMAP= $(SOLARENV)$/src$/component.map -SHL1DEF= $(MISC)$/$(SHL1TARGET).def -DEF1NAME= $(SHL1TARGET) +SHL1DEF= $(MISC)$/$(SHL1TARGET).def +DEF1NAME= $(SHL1TARGET) +DEFLIB1NAME=$(TARGET) # --- Targets ------------------------------------------------------ + .INCLUDE : target.mk |