aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2012-03-12 14:45:52 +0100
committerLukas Fleischer <archlinux@cryptocrack.de>2012-03-12 14:49:49 +0100
commit523e05098af3b9233d286a0f31afe7e879bcd6a8 (patch)
tree0aee23c5701d1a1561f90afaf22570df2a03f22b /Makefile
parent28db00b0def506223ae55f5a7eef0dc94591fe91 (diff)
downloadinitscripts-523e05098af3b9233d286a0f31afe7e879bcd6a8.tar.xz
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3e83e58..1081730 100644
--- a/Makefile
+++ b/Makefile
@@ -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