##// END OF EJS Templates
New make target "dist-notests" to create tarballs without running tests first.
Thomas Arendsen Hein -
r2234:9ea93ff6 default
parent child Browse files
Show More
@@ -14,7 +14,9 b' clean:'
14 find . -name '*.py[co]' -exec rm -f '{}' ';'
14 find . -name '*.py[co]' -exec rm -f '{}' ';'
15 $(MAKE) -C doc clean
15 $(MAKE) -C doc clean
16
16
17 dist: tests doc
17 dist: tests dist-notests
18
19 dist-notests: doc
18 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py sdist --force-manifest
20 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py sdist --force-manifest
19
21
20 tests:
22 tests:
@@ -27,5 +29,5 b' doc:'
27 $(MAKE) -C doc
29 $(MAKE) -C doc
28
30
29
31
30 .PHONY: all clean dist tests doc
32 .PHONY: all clean dist dist-notests tests doc
31
33
General Comments 0
You need to be logged in to leave comments. Login now