# HG changeset patch # User Thomas Arendsen Hein # Date 1147188113 -7200 # Node ID 9ea93ff67a73e579a5d54f1d7c796da9fe128006 # Parent 3840cefa5222b756d656be721009c14962e1a8be New make target "dist-notests" to create tarballs without running tests first. diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -14,7 +14,9 @@ clean: 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 @@ doc: $(MAKE) -C doc -.PHONY: all clean dist tests doc +.PHONY: all clean dist dist-notests tests doc