equal
deleted
inserted
replaced
2 |
2 |
3 ifeq '' '$(HOME)' |
3 ifeq '' '$(HOME)' |
4 $(error Home env var not set!) |
4 $(error Home env var not set!) |
5 endif |
5 endif |
6 |
6 |
7 .PHONY: all install preinstall install-all preinstall-all update-dot-emacs-pre update-dot-emacs-post |
7 .PHONY: all install preinstall install-all preinstall-all update-dot-emacs-pre update-dot-emacs-post tar |
8 |
8 |
9 all: install |
9 all: install |
10 |
10 |
11 install: preinstall update-dot-emacs-pre update-dot-emacs-post |
11 install: preinstall update-dot-emacs-pre update-dot-emacs-post |
12 |
12 |
42 else \ |
42 else \ |
43 cat template-post/$$file >>$(HOME)/.emacs-post; \ |
43 cat template-post/$$file >>$(HOME)/.emacs-post; \ |
44 fi; \ |
44 fi; \ |
45 done |
45 done |
46 |
46 |
47 dist-tar: |
47 tar: |
48 tar cf dot-emacs.tar .emacs .emacs-my |
48 tar cf dot-emacs.tar .emacs .emacs-my |
49 |
49 |
50 clean: |
50 clean: |
51 rm -f dot-emacs.tar |
51 rm -f dot-emacs.tar |