##// END OF EJS Templates
Add Makefile for generating release tarballs....
Thomas Arendsen Hein -
r1008:85272e96 default
parent child Browse files
Show More
@@ -0,0 +1,23 b''
1 # This Makefile is only used by developers.
2 PYTHON=python
3
4 all:
5 @echo "Read the file README for install instructions."
6
7 clean:
8 -$(PYTHON) setup.py clean --all # ignore errors of this command
9 find . -name '*.py[co]' -exec rm -f '{}' ';'
10 make -C doc clean
11
12 dist: tests doc
13 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py sdist --force-manifest
14
15 tests:
16 cd tests && ./run-tests
17
18 doc:
19 make -C doc
20
21
22 .PHONY: all clean dist tests doc
23
General Comments 0
You need to be logged in to leave comments. Login now