New make target "dist-notests" to create tarballs without running tests first.
authorThomas Arendsen Hein <thomas@intevation.de>
Tue, 09 May 2006 17:21:53 +0200
changeset 2234 9ea93ff67a73
parent 2233 3840cefa5222
child 2235 457e4247315d
New make target "dist-notests" to create tarballs without running tests first.
Makefile
--- a/Makefile	Tue May 09 17:05:49 2006 +0200
+++ b/Makefile	Tue May 09 17:21:53 2006 +0200
@@ -14,7 +14,9 @@
 	find . -name '*.py[co]' -exec rm -f '{}' ';'
 	$(MAKE) -C doc clean
 
-dist:	tests doc
+dist:	tests dist-notests
+
+dist-notests:	doc
 	TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py sdist --force-manifest
 
 tests:
@@ -27,5 +29,5 @@
 	$(MAKE) -C doc
 
 
-.PHONY: all clean dist tests doc
+.PHONY: all clean dist dist-notests tests doc