##// END OF EJS Templates
Use $(MAKE) not make
levon@movementarian.org -
r1423:76239f0c default
parent child Browse files
Show More
@@ -10,7 +10,7 b' install:'
10 clean:
10 clean:
11 -$(PYTHON) setup.py clean --all # ignore errors of this command
11 -$(PYTHON) setup.py clean --all # ignore errors of this command
12 find . -name '*.py[co]' -exec rm -f '{}' ';'
12 find . -name '*.py[co]' -exec rm -f '{}' ';'
13 make -C doc clean
13 $(MAKE) -C doc clean
14
14
15 dist: tests doc
15 dist: tests doc
16 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py sdist --force-manifest
16 TAR_OPTIONS="--owner=root --group=root --mode=u+w,go-w,a+rX-s" $(PYTHON) setup.py sdist --force-manifest
@@ -19,7 +19,7 b' tests:'
19 cd tests && ./run-tests
19 cd tests && ./run-tests
20
20
21 doc:
21 doc:
22 make -C doc
22 $(MAKE) -C doc
23
23
24
24
25 .PHONY: all clean dist tests doc
25 .PHONY: all clean dist tests doc
General Comments 0
You need to be logged in to leave comments. Login now