mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
57 lines
1.2 KiB
Makefile
57 lines
1.2 KiB
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: clean-sphinx
|
|
rm -f TAGS tags
|
|
find testtools -name "*.pyc" -exec rm '{}' \;
|
|
|
|
prerelease:
|
|
# An existing MANIFEST breaks distutils sometimes. Avoid that.
|
|
-rm MANIFEST
|
|
|
|
release:
|
|
./setup.py sdist upload --sign
|
|
$(PYTHON) scripts/_lp_release.py
|
|
|
|
snapshot: prerelease
|
|
./setup.py sdist
|
|
|
|
### Documentation ###
|
|
|
|
apidocs:
|
|
# pydoctor emits deprecation warnings under Ubuntu 10.10 LTS
|
|
PYTHONWARNINGS='ignore::DeprecationWarning' \
|
|
pydoctor --make-html --add-package testtools \
|
|
--docformat=restructuredtext --project-name=testtools \
|
|
--project-url=https://launchpad.net/testtools
|
|
|
|
doc/news.rst:
|
|
ln -s ../NEWS doc/news.rst
|
|
|
|
docs: doc/news.rst docs-sphinx
|
|
rm doc/news.rst
|
|
|
|
docs-sphinx: html-sphinx
|
|
|
|
# Clean out generated documentation
|
|
clean-sphinx:
|
|
cd doc && make clean
|
|
|
|
# Build the html docs using Sphinx.
|
|
html-sphinx:
|
|
cd doc && make html
|
|
|
|
.PHONY: apidocs docs-sphinx clean-sphinx html-sphinx docs
|
|
.PHONY: check clean prerelease release
|