mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
29 lines
588 B
Makefile
29 lines
588 B
Makefile
# See README for copyright and licensing details.
|
|
|
|
PYTHON=python
|
|
SOURCES=$(shell find testtools -name "*.py")
|
|
|
|
check:
|
|
PYTHONPATH=$(PWD) $(PYTHON) -m testtools.run testtools.tests.test_suite
|
|
|
|
TAGS: ${SOURCES}
|
|
ctags -e -R testtools/
|
|
|
|
tags: ${SOURCES}
|
|
ctags -R testtools/
|
|
|
|
clean:
|
|
rm -f TAGS tags
|
|
find testtools -name "*.pyc" -exec rm '{}' \;
|
|
|
|
release:
|
|
./setup.py sdist upload --sign
|
|
|
|
apidocs:
|
|
pydoctor --make-html --add-package testtools \
|
|
--docformat=restructuredtext --project-name=testtools \
|
|
--project-url=https://launchpad.net/testtools
|
|
|
|
|
|
.PHONY: check clean release apidocs
|