gPodder QML UI 4.0.0

This commit is contained in:
Thomas Perl 2014-03-15 00:02:31 +01:00
parent d3c1133610
commit c5aeb752f4
2 changed files with 24 additions and 1 deletions

21
makefile Normal file
View file

@ -0,0 +1,21 @@
PROJECT := gpodder-ui-qml
VERSION := 4.0.0
all:
@echo ""
@echo " make release ..... Build source release"
@echo ""
release: dist/$(PROJECT)-$(VERSION).tar.gz
dist/$(PROJECT)-$(VERSION).tar.gz:
mkdir -p dist
git archive --format=tar --prefix=$(PROJECT)-$(VERSION)/ $(VERSION) | gzip >$@
clean:
find . -name '__pycache__' -exec rm {} +
distclean: clean
rm -rf dist
.PHONY: all release clean