libcli: SMB2: Pure SMB2-only negprot fix to make us behave as a Windows client does.
[Samba.git] / lib / extras / Makefile
blob270e8d11546acf9d03c193cdced6edad556e41b1
1 # See README.rst for copyright and licensing details.
3 PYTHON=python
4 SOURCES=$(shell find extras -name "*.py")
6 check:
7 PYTHONPATH=$(PWD) $(PYTHON) -m testtools.run extras.tests.test_suite
9 TAGS: ${SOURCES}
10 ctags -e -R extras/
12 tags: ${SOURCES}
13 ctags -R extras/
15 clean:
16 rm -f TAGS tags
17 find extras -name "*.pyc" -exec rm '{}' \;
19 ### Documentation ###
21 apidocs:
22 # pydoctor emits deprecation warnings under Ubuntu 10.10 LTS
23 PYTHONWARNINGS='ignore::DeprecationWarning' \
24 pydoctor --make-html --add-package extras \
25 --docformat=restructuredtext --project-name=extras \
26 --project-url=https://launchpad.net/extras
29 .PHONY: apidocs
30 .PHONY: check clean