diff options
author | Frank Peters <fpe@openoffice.org> | 2004-08-18 10:57:47 +0000 |
---|---|---|
committer | Frank Peters <fpe@openoffice.org> | 2004-08-18 10:57:47 +0000 |
commit | 9fd2e52b646c5de9b1c853fde54edbe9c13b55ec (patch) | |
tree | 5aa1668723d28b5ff405326931bc53fe4f947f7c /helpcontent2/helpers | |
parent | f2b36c962cd6eede755ce608d2e7dea765c8d43c (diff) |
#i33146# updated help authoring environment
Diffstat (limited to 'helpcontent2/helpers')
-rw-r--r-- | helpcontent2/helpers/linkmakefile.template | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/helpcontent2/helpers/linkmakefile.template b/helpcontent2/helpers/linkmakefile.template new file mode 100644 index 0000000000..31f8c10939 --- /dev/null +++ b/helpcontent2/helpers/linkmakefile.template @@ -0,0 +1,51 @@ +#************************************************************************* +#* +#* $Workfile:$ +#* +#* Creation date KR 28.06.99 +#* last change $Author: fpe $ $Date: 2004-08-18 11:57:47 $ +#* +#* $Revision: 1.1 $ +#* +#* $Logfile:$ +#* +#* Copyright 2000 Sun Microsystems, Inc. All Rights Reserved. +#* +#************************************************************************* + +# edit to match directory level +PRJ = %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=%module%_xml +ZIP1FLAGS= -u -r +ZIP1DIR=$(MISC)$/$(LANGDIR) +ZIP1LIST=$(LANGDIR)$/text$/%module%$/* -x "*.dphh*" -x "*.hzip" + + +LINKNAME=%module% +LINKADDEDFILES= \ +%linkaddedfiles% + +LINKADDEDDEPS= \ +%linkaddeddeps% + +LINKLINKFILES= \ +%linklinkfiles% + +# --- Targets ------------------------------------------------------ + +.INCLUDE : target.mk +.INCLUDE : $(PRJ)$/util$/target.pmk + |