Codebase list metche / 9683254
Makefile: ensure we don't overwrite an existing tarball. intrigeri 6 years ago
1 changed file(s) with 3 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
1010 rm -f metche.8
1111
1212 VERSION=$(shell head -n1 Changelog | awk '{print $$1}')
13 TARBALL=../metche-$(VERSION).tar.gz
1314 release: Changelog
15 ! [ -f $(TARBALL) ]
1416 git archive \
1517 --prefix=metche-$(VERSION)/ \
16 --output=../metche-$(VERSION).tar.gz \
18 --output=$(TARBALL) \
1719 master
1820
1921 .PHONY: all doc clean distclean