diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2005-12-28 17:06:29 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2005-12-28 17:06:29 +0000 |
commit | c9cce0e5763a168e1b5304af5d8a9303c98e8d78 (patch) | |
tree | 3242b311f10c46f1715f9167742cf9ab068a97f8 /odk/pack/gendocu | |
parent | 3b7ab84439d653e8301de4f1c7832568d0b29d3d (diff) |
INTEGRATION: CWS jsc2 (1.14.24); FILE MERGED
2005/12/09 08:59:51 jsc 1.14.24.1: #i59020# improve dependencies on cpp.css
Diffstat (limited to 'odk/pack/gendocu')
-rw-r--r-- | odk/pack/gendocu/makefile.mk | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/odk/pack/gendocu/makefile.mk b/odk/pack/gendocu/makefile.mk index 7e6f3e1942de..3d753dc4cfe9 100644 --- a/odk/pack/gendocu/makefile.mk +++ b/odk/pack/gendocu/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.14 $ +# $Revision: 1.15 $ # -# last change: $Author: rt $ $Date: 2005-09-07 20:17:23 $ +# last change: $Author: hr $ $Date: 2005-12-28 18:06:29 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -48,6 +48,8 @@ JAVADOCREFNAME="UDK $(UDK_MAJOR).$(UDK_MINOR).$(UDK_MICRO) Java API Reference" CPP_DOCU_INDEX_FILE = $(DESTDIRGENCPPREF)$/index.html JAVA_DOCU_INDEX_FILE = $(DESTDIRGENJAVAREF)$/index.html +CPP_DOCU_CLEANUP_FLAG = $(MISC)$/cpp_docu_cleanup.flag + JAVA_SRC_DIR=$(MISC)$/java_src JAVA_PACKAGES=\ com.sun.star.comp.helper \ @@ -98,7 +100,12 @@ all: \ all: $(CPP_DOCU_INDEX_FILE) .ENDIF -$(CPP_DOCU_INDEX_FILE) : $(INCLUDELIST) + +$(CPP_DOCU_CLEANUP_FLAG) : $(INCLUDELIST) $(PRJ)$/docs$/cpp$/ref$/cpp.css + +-$(MY_DELETE_RECURSIVE) $(DESTDIRGENCPPREF) >& $(NULLDEV) + +$(TOUCH) $@ + +$(CPP_DOCU_INDEX_FILE) : $(CPP_DOCU_CLEANUP_FLAG) +-$(MKDIRHIER) $(@:d) +$(MY_AUTODOC) -html $(DESTDIRGENCPPREF) -name $(CPPDOCREFNAME) $(AUTODOCPARAMS) +-rm $(@:d)$/cpp.css |