Added suffix mini to mini-tarball.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 01 Jan 2019 23:38:59 +0200
changeset 918 0cba37c54a9e
parent 917 71ffdacfbc57
child 919 cdf599c86ccf
Added suffix mini to mini-tarball.
Makefile
--- 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.