comparison Makefile @ 2207:8a2a7f7d9df6

Delete the shell version of run-tests Use the python version instead
author Stephen Darnell <stephen@darnell.plus.com>
date Thu, 04 May 2006 15:47:18 -0700
parents e84c69b43cdb
children 3840cefa5222
comparison
equal deleted inserted replaced
2206:c74e91e81f70 2207:8a2a7f7d9df6
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
17 17
18 tests: 18 tests:
19 cd tests && ./run-tests 19 cd tests && $(PYTHON) run-tests.py
20 20
21 test-%: 21 test-%:
22 cd tests && ./run-tests $@ 22 cd tests && $(PYTHON) run-tests.py $@
23 23
24 doc: 24 doc:
25 $(MAKE) -C doc 25 $(MAKE) -C doc
26 26
27 27