Added suffix mini to mini-tarball.
--- a/Makefile Sun Dec 30 12:56:51 2018 +0200
+++ b/Makefile Tue Jan 01 23:38:59 2019 +0200
@@ -80,7 +80,7 @@
RST_FILES = $(wildcard *.rst)
HTML_FILES = $(RST_FILES:.rst=.html)
-TARBALL := skel.tar.gz
+TARBALL_MINI := skel-mini.tar.gz
################################################################
# Build targets.
@@ -88,17 +88,17 @@
.PHONY: all
all:
-.PHONY: dist
-dist: $(TARBALL)
+.PHONY: dist-mini
+dist-mini: $(TARBALL_MINI)
-define TARBALL_DEPS
+define TARBALL_MINI_DEPS
.bashrc .env .bash_completion \
.inputrc .dircolors \
.gitconfig .gitignore .hgrc .hgignore .hgstyle
endef
-$(TARBALL): $(TARBALL_DEPS)
- tar zcf $(TARBALL) $(TARBALL_DEPS)
+$(TARBALL_MINI): $(TARBALL_MINI_DEPS)
+ tar zcf $(TARBALL_MINI) $(TARBALL_MINI_DEPS)
################################################################
# Install/uninstall targets.