diff options
author | Bustamam Harun <bustamam@openoffice.org> | 2001-08-29 20:25:22 +0000 |
---|---|---|
committer | Bustamam Harun <bustamam@openoffice.org> | 2001-08-29 20:25:22 +0000 |
commit | d65b2edb1b3e0f6ef5de7100d8c5283b4ba470ad (patch) | |
tree | 419fc7786da4897fc69c40cdf9c428b21ea5e9f9 /i18npool | |
parent | 8b5c4d72e0cfa5e2eed1bdda0ee6eeb9058dfa5d (diff) |
Add localedata_ascii localedata_CJK and localedata parser into i18npool
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/prj/build.lst | 7 | ||||
-rw-r--r-- | i18npool/prj/d.lst | 11 | ||||
-rw-r--r-- | i18npool/util/makefile.mk | 69 |
3 files changed, 87 insertions, 0 deletions
diff --git a/i18npool/prj/build.lst b/i18npool/prj/build.lst new file mode 100644 index 000000000000..f1d241b3ee5e --- /dev/null +++ b/i18npool/prj/build.lst @@ -0,0 +1,7 @@ +in i18npool : bridges sax stoc svtools unotools NULL +in i18npool usr1 - all in_mkout NULL +in i18npool\source\unotypes nmake - all in_utypes NULL +in i18npool\source\localedata_ascii nmake - all in_locdata_ascii in_xmlparser NULL +in i18npool\source\localedata_CJK nmake - all in_locdata_cjk in_xmlparser NULL +in i18npool\source\xmlparser nmake - all in_xmlparser in_utypes NULL +in i18npool\util nmake - all in_util in_locdata_ascii in_locdata_cjk in_xmlparser NULL diff --git a/i18npool/prj/d.lst b/i18npool/prj/d.lst new file mode 100644 index 000000000000..11c87f73d085 --- /dev/null +++ b/i18npool/prj/d.lst @@ -0,0 +1,11 @@ +mkdir: %_DEST%\xml +..\xml\*.xml %_DEST%\xml\*.xml + +mkdir: %_DEST%\inc%_EXT%\i18npool + +..\%__SRC%\bin\localedata_*.dll %_DEST%\bin%_EXT%\localedata_*.dll +..\%__SRC%\lib\liblocaledata_*.so %_DEST%\lib%_EXT%\liblocaledata_*.so +..\%__SRC%\lib\liblocaledata_*.dylib %_DEST%\lib%_EXT%\liblocaledata_*.dylib + +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/i18npool/util/makefile.mk b/i18npool/util/makefile.mk new file mode 100644 index 000000000000..de0554d81ac1 --- /dev/null +++ b/i18npool/util/makefile.mk @@ -0,0 +1,69 @@ +#************************************************************************* +#* +#* $RCSfile: makefile.mk,v $ +#* +#* makefile +#* +#* Erstellung HJS 17.07.00 +#* +#* Letzte Aenderung $Author: bustamam $ $Date: 2001-08-29 21:25:22 $ +#* +#* $Revision: 1.1 $ +#* +#* $Source: /zpool/svn/migration/cvs_rep_09_09_08/code/i18npool/util/makefile.mk,v $ +#* +#* Copyright (c) 1997 - 1998, Star Division GmbH +#* +#************************************************************************* + +PRJ=.. + +PRJNAME=i18npool +TARGET=i18npool +VERSION=$(UPD) +USE_LDUMP2=TRUE + +# --- Settings ----------------------------------------------------------- + +.INCLUDE : settings.mk + +# --- Allgemein ---------------------------------------------------------- + +SHL1TARGET= localedata_ascii +SHL1IMPLIB= i$(SHL1TARGET) +SHL1LIBS= $(SLB)$/$(SHL1TARGET).lib +SHL1DEF= $(MISC)$/$(SHL1TARGET).def +DEF1NAME= $(SHL1TARGET) +DEFLIB1NAME= $(SHL1TARGET) +DEF1DEPN= $(MISC)$/$(SHL1TARGET).flt + + +SHL2TARGET= localedata_CJK +SHL2IMPLIB= i$(SHL2TARGET) +SHL2LIBS= $(SLB)$/$(SHL2TARGET).lib +SHL2DEF= $(MISC)$/$(SHL2TARGET).def +DEF2NAME= $(SHL2TARGET) +DEFLIB2NAME= $(SHL2TARGET) +DEF2DEPN= $(MISC)$/$(SHL2TARGET).flt + + +.IF "$(GUI)"=="UNX" +.IF "$(OS)"!="MACOSX" +SHL1STDLIBS +=\ + -lX11 -lXt -lXmu +.ENDIF +.ENDIF + +# --- Targets ------------------------------------------------------------ + +.INCLUDE : target.mk + +$(MISC)$/$(SHL1TARGET).flt: makefile.mk + @echo ------------------------------ + @echo Making: $@ + @echo Provider>> $@ + +$(MISC)$/$(SHL2TARGET).flt: makefile.mk + @echo ------------------------------ + @echo Making: $@ + @echo Provider>> $@ |