equal
deleted
inserted
replaced
78 IFNONEXIST_ITEMS = .wgetrc .subversion |
78 IFNONEXIST_ITEMS = .wgetrc .subversion |
79 |
79 |
80 RST_FILES = $(wildcard *.rst) |
80 RST_FILES = $(wildcard *.rst) |
81 HTML_FILES = $(RST_FILES:.rst=.html) |
81 HTML_FILES = $(RST_FILES:.rst=.html) |
82 |
82 |
83 TARBALL := skel.tar.gz |
83 TARBALL_MINI := skel-mini.tar.gz |
84 |
84 |
85 ################################################################ |
85 ################################################################ |
86 # Build targets. |
86 # Build targets. |
87 |
87 |
88 .PHONY: all |
88 .PHONY: all |
89 all: |
89 all: |
90 |
90 |
91 .PHONY: dist |
91 .PHONY: dist-mini |
92 dist: $(TARBALL) |
92 dist-mini: $(TARBALL_MINI) |
93 |
93 |
94 define TARBALL_DEPS |
94 define TARBALL_MINI_DEPS |
95 .bashrc .env .bash_completion \ |
95 .bashrc .env .bash_completion \ |
96 .inputrc .dircolors \ |
96 .inputrc .dircolors \ |
97 .gitconfig .gitignore .hgrc .hgignore .hgstyle |
97 .gitconfig .gitignore .hgrc .hgignore .hgstyle |
98 endef |
98 endef |
99 |
99 |
100 $(TARBALL): $(TARBALL_DEPS) |
100 $(TARBALL_MINI): $(TARBALL_MINI_DEPS) |
101 tar zcf $(TARBALL) $(TARBALL_DEPS) |
101 tar zcf $(TARBALL_MINI) $(TARBALL_MINI_DEPS) |
102 |
102 |
103 ################################################################ |
103 ################################################################ |
104 # Install/uninstall targets. |
104 # Install/uninstall targets. |
105 |
105 |
106 .PHONY: install |
106 .PHONY: install |