dot/GNUmakefile

24 lines
299 B
Makefile
Raw Normal View History

1997-07-19 15:40:36 +02:00
include GNUmakerules
1996-02-06 11:02:23 +01:00
ALLSRC = \
.zlogin \
.zlogout \
.znewterm \
.zprofile \
.zshenv \
.zshrc \
ALLDST = $(subst ., $(HOME)/., $(ALLSRC))
install: $(ALLDST)
echo:
echo $(ALLSRC)
echo $(ALLDST)
1996-02-06 11:02:23 +01:00
$(HOME)/%: %
$(INSTALL) $^ $@
diff:
for i in $(ALLSRC); do diff -u $(HOME)/$$i $$i; done