aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2008-10-31 13:02:48 +0100
committerGuido Guenther <agx@sigxcpu.org>2008-10-31 13:03:43 +0100
commit079ed73716fdd83acd0a57807a20dea4fa8d7c12 (patch)
tree9d544db497f30f3ea0224877015c2e65ad619b00
parent848b4fbd2590fdb85602f940bc179c66a7e25a31 (diff)
run checks before dist
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 64ef6b3..d2ba366 100644
--- a/Makefile
+++ b/Makefile
@@ -23,5 +23,7 @@ check: $(PYFILES)
clean:
rm -f *.py *.pyc
-dist:
+dist: clean check
git-archive --format=tar --prefix=$(PKG)-$(VERSION)/ HEAD | gzip -c > ../$(PKG)-$(VERSION).tar.gz
+
+.PHONY: clean check dist install