dot/GNUmakefile

24 lines
293 B
Makefile
Raw Normal View History

ALLSRC = \
2004-04-23 22:33:46 +02:00
.zjava \
.zlogin \
.zlogout \
.znewterm \
.zprofile \
.zshenv \
.zshrc \
2017-02-13 20:27:11 +01:00
.gitconfig \
ALLDST = $(subst ., $(HOME)/., $(ALLSRC))
install: $(ALLDST)
echo:
echo $(ALLSRC)
echo $(ALLDST)
1996-02-06 11:02:23 +01:00
$(HOME)/%: %
2005-11-08 11:20:09 +01:00
cp $^ $@
diff:
for i in $(ALLSRC); do diff -u $(HOME)/$$i $$i; done