diff options
author | Nils Fuhrmann <nf@openoffice.org> | 2001-08-03 13:41:09 +0000 |
---|---|---|
committer | Nils Fuhrmann <nf@openoffice.org> | 2001-08-03 13:41:09 +0000 |
commit | 537c09ab4a2f7284ba7813e697bd57732c42cbd3 (patch) | |
tree | 2a4adbbc3675bb319419f603b5f97cba57d10e78 /transex3 | |
parent | aadf05dac33f83bfcba35873b4f2dacd64e8bab0 (diff) |
Added transex libs
Diffstat (limited to 'transex3')
-rw-r--r-- | transex3/prj/d.lst | 3 | ||||
-rw-r--r-- | transex3/source/makefile.mk | 14 |
2 files changed, 12 insertions, 5 deletions
diff --git a/transex3/prj/d.lst b/transex3/prj/d.lst index b8766789c8bc..c3b3cd845040 100644 --- a/transex3/prj/d.lst +++ b/transex3/prj/d.lst @@ -16,7 +16,8 @@ mkdir: %_DEST%\inc%_EXT%\transex3 ..\%__SRC%\misc\*staticdatamembers.h* %_DEST%\inc%_EXT%\*staticdatamembers.h* ..\inc\export.hxx %_DEST%\inc%_EXT%\transex3\export.hxx -..\%__SRC%\lib\transex3.lib %_DEST%\lib%_EXT%\transex3.lib +..\%__SRC%\lib\transex.lib %_DEST%\lib%_EXT%\transex.lib +..\%__SRC%\lib\libtransex.a %_DEST%\lib%_EXT%\libtransex.a dos: sh -c "if test %OS% = MACOSX; then create-bundle %_DEST%\lib%_EXT%\*.dylib; fi" dos: sh -c "if test %OS% = MACOSX; then create-libstatic-link %_DEST%\lib%_EXT%; fi" diff --git a/transex3/source/makefile.mk b/transex3/source/makefile.mk index f89835aa74e4..90da4acf4bce 100644 --- a/transex3/source/makefile.mk +++ b/transex3/source/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.16 $ +# $Revision: 1.17 $ # -# last change: $Author: nf $ $Date: 2001-06-27 12:08:41 $ +# last change: $Author: nf $ $Date: 2001-08-03 14:41:09 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -83,12 +83,18 @@ OBJFILES= \ $(OBJ)$/wrdtrans.obj \ $(OBJ)$/wtratree.obj \ $(OBJ)$/wtranode.obj \ - $(OBJ)$/srciter.obj + $(OBJ)$/srciter.obj \ + $(OBJ)$/utf8conv.obj + +LIB1TARGET= $(LB)$/transex.lib +LIB1ARCHIV= $(LB)$/libtransex.a +LIB1FILES= $(LB)$/transex3.lib + # extractor and merger for *.src and *.hrc APP1TARGET= $(TARGET) APP1STACK= 16000 -APP1OBJS= $(OBJ)$/src_yy.obj $(OBJ)$/utf8conv.obj +APP1OBJS= $(OBJ)$/src_yy.obj APP1STDLIBS+=$(BTSTRPLIB) $(STATIC_LIBS) APP1LIBS+= $(LB)$/$(TARGET).lib APP1DEPN= $(OBJ)$/src_yy.obj $(LB)$/$(TARGET).lib |