mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
c4040a3a58
commit
2fe5df56c1
2 changed files with 23 additions and 13 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue