# HG changeset patch # User Oleksandr Gavenko # Date 1546378739 -7200 # Node ID 0cba37c54a9e750fb68fc45d04bacc846957a3ab # Parent 71ffdacfbc57b64b9bc456cff7d3948f59766cbf Added suffix mini to mini-tarball. diff -r 71ffdacfbc57 -r 0cba37c54a9e 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.