diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-03-12 14:45:52 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-03-12 14:49:49 +0100 |
commit | 523e05098af3b9233d286a0f31afe7e879bcd6a8 (patch) | |
tree | 0aee23c5701d1a1561f90afaf22570df2a03f22b | |
parent | 28db00b0def506223ae55f5a7eef0dc94591fe91 (diff) |
Makefile: Mark phony targets
Most targets used in our Makefile don't refer to files. Use the ".PHONY"
special target to mark these. Doing this prevents us from file name
conflicts and improves performance a bit.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -62,3 +62,5 @@ tar: release: tar scp initscripts-$(VER).tar.xz gerolde.archlinux.org:/srv/ftp/other/initscripts/ scp initscripts-$(VER).tar.xz pkgbuild.com:~/svn-packages/initscripts/trunk/ + +.PHONY: all installdirs install doc clean tar release |