Adds .PHONY exactly before corresponding target.
SHELL = /bin/sh
.PHONY: all
all:
ifeq '' '$(HOME)'
$(error HOME env var not set!)
endif
host_os = linux
ifneq '' '$(COMSPEC)'
host_os = windows
endif
ALL_DIR = all
LINUX_DIR = linux
WIN_DIR = win
ifeq 'linux' '$(host_os)'
DIRS = all linux
endif
ifeq 'windows' '$(host_os)'
DIRS = all win
endif
.PHONY: install
install:
for srcdir in $(DIRS); do \
for item in `cd $$srcdir; find $$PWD -type f`; do \
file=$${item#$${PWD}/$${srcdir}/}; \
fname=$${item##*/}; \
dir=$${item#$${PWD}/$${srcdir}}; \
dir=$${dir%/$${fname}}; \
dir=$${dir#/}; \
echo mkdir -p $(HOME)/$$dir; \
echo install -m 660 $$srcdir/$$file $(HOME)/$$dir; \
done; \
done
.PHONY: uninstall
uninstall:
rm -f $(HOME)/.mailsign
.PHONY: clean
clean:
.PHONY: distclean
distclean: clean