Add .PHONY targets, to declare targets that aren't real files.
Immediate benefit: when you use "make -t" to avoid a global recompile after a trivial header file touchup, Make will no longer create files named all, oldsharedmods, and sharedmods. (Not sure if I tracked down all such targets. Not sure if I care.)
This commit is contained in:
parent
6ce1315bd3
commit
d4f7da3cd7
@ -929,4 +929,12 @@ funny:
|
|||||||
|
|
||||||
Python/thread.o: @THREADHEADERS@
|
Python/thread.o: @THREADHEADERS@
|
||||||
|
|
||||||
|
# Declare targets that aren't real files
|
||||||
|
.PHONY: all sharedmods oldsharedmods test quicktest memtest
|
||||||
|
.PHONY: install altinstall oldsharedinstall bininstall altbininstall
|
||||||
|
.PHONY: maninstall libinstall inclinstall libainstall sharedinstall
|
||||||
|
.PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
|
||||||
|
.PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
|
||||||
|
.PHONY: recheck autoconf clean clobber distclean smelly funny
|
||||||
|
|
||||||
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
|
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
|
||||||
|
Loading…
x
Reference in New Issue
Block a user