Makefile (291B)
1 include ../config.mk 2 3 all: 4 : 5 6 clean: 7 : 8 9 install: 10 find . -type f -exec sh -c 'umask 022; \ 11 $(INSTALL) -Dm 0644 {} $(EXDIR)/{}' shell \; 12 13 uninstall: 14 find $(EXDIR) -type f -exec rm {} \; || true 15 find $(EXDIR) -depth -type d -exec rmdir {} \; || true 16 17 .PHONY: all clean install uninstall