mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 22:00:49 +00:00
Fixed PHONY targets decl which was ignored; make install depend on all
at MAKE_LEVEL 0 git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@10221 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
02d3b99a53
commit
c799228724
1 changed files with 6 additions and 1 deletions
|
@ -69,7 +69,12 @@ all:: before-all internal-all after-all
|
|||
# internal-after-install is used by packaging to get the list of files
|
||||
# installed (see rpm.make); it must come after *all* the installation
|
||||
# rules have been executed.
|
||||
ifeq ($(MAKELEVEL),0)
|
||||
install:: all \
|
||||
before-install internal-install after-install internal-after-install
|
||||
else
|
||||
install:: before-install internal-install after-install internal-after-install
|
||||
endif
|
||||
|
||||
uninstall:: before-uninstall internal-uninstall after-uninstall
|
||||
|
||||
|
@ -129,7 +134,7 @@ after-check::
|
|||
|
||||
# declare targets as PHONY
|
||||
|
||||
.PHONY = all before-all internal-all after-all \
|
||||
.PHONY: all before-all internal-all after-all \
|
||||
install before-install internal-install after-install \
|
||||
internal-after-install \
|
||||
uninstall before-uninstall internal-uninstall after-uninstall \
|
||||
|
|
Loading…
Reference in a new issue