# HG changeset patch # User Oleksandr Gavenko # Date 1263413366 -7200 # Node ID 9e590e7ef10817cb9508c2ee935f43e0c1f8078c # Parent 52322e5cc6bb869e84d9423531f2782d0566b34a Adds .PHONY exactly before corresponding target. diff -r 52322e5cc6bb -r 9e590e7ef108 Makefile --- a/Makefile Wed Jan 13 22:06:21 2010 +0200 +++ b/Makefile Wed Jan 13 22:09:26 2010 +0200 @@ -1,5 +1,8 @@ SHELL = /bin/sh +.PHONY: all +all: + ifeq '' '$(HOME)' $(error HOME env var not set!) endif @@ -9,8 +12,6 @@ host_os = windows endif -.PHONY: all install uninstall clean distclean - ALL_DIR = all LINUX_DIR = linux WIN_DIR = win @@ -22,6 +23,7 @@ DIRS = all win endif +.PHONY: install install: for srcdir in $(DIRS); do \ for item in `cd $$srcdir; find $$PWD -type f`; do \ @@ -35,10 +37,13 @@ done; \ done +.PHONY: uninstall uninstall: rm -f $(HOME)/.mailsign +.PHONY: clean clean: +.PHONY: distclean distclean: clean