comparison Makefile @ 1426:e84c69b43cdb

add a target for running only one test
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Mon, 24 Oct 2005 14:53:36 -0700
parents 76239f0cb0dc
children 8a2a7f7d9df6
comparison
equal deleted inserted replaced
1425:8fe4116b3253 1426:e84c69b43cdb
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 && ./run-tests
20 20
21 test-%:
22 cd tests && ./run-tests $@
23
21 doc: 24 doc:
22 $(MAKE) -C doc 25 $(MAKE) -C doc
23 26
24 27
25 .PHONY: all clean dist tests doc 28 .PHONY: all clean dist tests doc