diff options
author | Frank Peters <fpe@openoffice.org> | 2004-08-18 09:59:46 +0000 |
---|---|---|
committer | Frank Peters <fpe@openoffice.org> | 2004-08-18 09:59:46 +0000 |
commit | 4f48bcc7937fbc586af7720d4225768ee6913e2a (patch) | |
tree | 431c32101c9b8349fe8f420615df796296d69a90 /helpcontent2/util/shared/makefile.mk |
#i33146# Initial checkin
Diffstat (limited to 'helpcontent2/util/shared/makefile.mk')
-rw-r--r-- | helpcontent2/util/shared/makefile.mk | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/helpcontent2/util/shared/makefile.mk b/helpcontent2/util/shared/makefile.mk new file mode 100644 index 0000000000..1606c1a620 --- /dev/null +++ b/helpcontent2/util/shared/makefile.mk @@ -0,0 +1,69 @@ +#************************************************************************* +#* +#* $Workfile:$ +#* +#* Creation date KR 28.06.99 +#* last change $Author: fpe $ $Date: 2004-08-18 10:59:45 $ +#* +#* $Revision: 1.1 $ +#* +#* $Logfile:$ +#* +#* Copyright 2000 Sun Microsystems, Inc. All Rights Reserved. +#* +#************************************************************************* + +# edit to match directory level +PRJ = ..$/.. +# same for all makefiles in "help2" +PRJNAME = help2 +# uniqe name (module wide); +# using a modified forme of package should do here +TARGET = util + +# --- Settings ----------------------------------------------------- + +.INCLUDE : $(PRJ)$/settings.pmk +.INCLUDE : settings.mk + +common_build_zip:= +zip1generatedlangs=TRUE +ZIP1TARGET=shared_xml +ZIP1FLAGS= -u -r +ZIP1DIR=$(MISC)$/$(LANGDIR) +ZIP1LIST=$(LANGDIR)$/text$/shared$/* -x "*.dphh*" -x "*.hzip" + + +LINKNAME=shared +LINKADDEDFILES= \ + -add help$/LANGUAGE$/shared.tree $(PRJ)$/source$/auxiliary$/LANGUAGE$/shared.tree \ + -add help$/LANGUAGE$/shared.jar $(BIN)$/shared_xml_LANGUAGE.zip \ + -add help$/LANGUAGE$/default.css $(PRJ)$/source$/auxiliary$/LANGUAGE$/default.css \ + -add help$/LANGUAGE$/highcontrast1.css $(PRJ)$/source$/auxiliary$/LANGUAGE$/highcontrast1.css \ + -add help$/LANGUAGE$/highcontrast2.css $(PRJ)$/source$/auxiliary$/LANGUAGE$/highcontrast2.css \ + -add help$/LANGUAGE$/highcontrastwhite.css $(PRJ)$/source$/auxiliary$/LANGUAGE$/highcontrastwhite.css \ + -add help$/LANGUAGE$/highcontrastblack.css $(PRJ)$/source$/auxiliary$/LANGUAGE$/highcontrastblack.css \ + -add help$/LANGUAGE$/err.html $(PRJ)$/source$/auxiliary$/LANGUAGE$/err.html \ + -add help$/main_transform.xsl $(PRJ)$/source$/auxiliary$/main_transform.xsl + + +LINKADDEDDEPS= \ + $(PRJ)$/source$/auxiliary$/LANGUAGE$/shared.tree \ + $(BIN)$/shared_xml_LANGUAGE.zip \ + $(PRJ)$/source$/auxiliary$/LANGUAGE$/default.css \ + $(PRJ)$/source$/auxiliary$/LANGUAGE$/highcontrast1.css \ + $(PRJ)$/source$/auxiliary$/LANGUAGE$/highcontrast2.css \ + $(PRJ)$/source$/auxiliary$/LANGUAGE$/highcontrastwhite.css \ + $(PRJ)$/source$/auxiliary$/LANGUAGE$/highcontrastblack.css \ + $(PRJ)$/source$/auxiliary$/LANGUAGE$/err.html \ + $(PRJ)$/source$/auxiliary$/main_transform.xsl + + +LINKLINKFILES= \ + + +# --- Targets ------------------------------------------------------ + +.INCLUDE : target.mk +.INCLUDE : $(PRJ)$/util$/target.pmk + |