Fixed order or installation rules in Instance/documentation.make

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@14922 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-11-04 15:03:11 +00:00
parent c4040a3a58
commit 2fe5df56c1
2 changed files with 23 additions and 13 deletions

View file

@ -1,3 +1,9 @@
Mon Nov 4 14:59:27 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/documentation.make (internal-doc-install_): Moved
before the submakefile fragments are included, to fix installation
problem.
Mon Nov 4 12:44:07 2002 Nicola Pero <n.pero@mi.flashnet.it>
* GNUmakefile.in (distclean): Remove fixpath.sh.

View file

@ -94,6 +94,23 @@ endif
internal-textdoc-install_ \
internal-textdoc-uninstall_
#
# Common code.
#
# Installation directory - always created. This rule should be before
# the makefile fragments' internal-doc-install_, so that
# GNUSTEP_DOCUMENTATION/DOC_INSTALL_DIR is built before their targets
# are. FIXME: Maybe this dependency should be in the submakefiles
# themselves.
internal-doc-install_:: $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)
$(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR):
$(MKINSTALLDIRS) $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)
$(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$(GNUSTEP_INSTANCE):
$(MKINSTALLDIRS) $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$(GNUSTEP_INSTANCE)
ifneq ($(TEXI_FILES),)
include $(GNUSTEP_MAKEFILES)/Instance/Documentation/texi.make
endif
@ -118,19 +135,6 @@ ifneq ($($(GNUSTEP_INSTANCE)_INSTALL_FILES),)
include $(GNUSTEP_MAKEFILES)/Instance/Documentation/install_files.make
endif
#
# Common code.
#
# Installation directory - always created.
internal-doc-install_:: $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)
$(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR):
$(MKINSTALLDIRS) $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)
$(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$(GNUSTEP_INSTANCE):
$(MKINSTALLDIRS) $(GNUSTEP_DOCUMENTATION)/$(DOC_INSTALL_DIR)/$(GNUSTEP_INSTANCE)
#
# textdoc targets - these are meant to be used with texi.make ... maybe
# they should be moved in there