comparison Makefile @ 2219:ec82cff7d2c4

merge with crew.
author Vadim Gelfer <vadim.gelfer@gmail.com>
date Mon, 08 May 2006 08:04:46 -0700
parents 8a2a7f7d9df6
children 3840cefa5222
comparison
equal deleted inserted replaced
2218:afe24f5b7a9e 2219:ec82cff7d2c4
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