2 SPHINXBUILD = sphinx-build
4 DOCHTML = $(DOCDIR)/html
5 DOCTREES = $(DOCDIR)/doctrees
6 ALLSPHINXOPTS = -d $(DOCTREES) $(SPHINXOPTS) $(DOCDIR)
9 RSTFILES = doc/index.rst doc/module.rst NEWS README.rst doc/conf.py
14 ./setup.py build_ext --inplace
16 $(DOCHTML)/index.html: $(MODNAME) $(RSTFILES)
17 $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(DOCHTML)
20 doc: $(DOCHTML)/index.html
23 fakeroot ./setup.py sdist
26 @for ver in 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5; do \
27 for flavour in "" "-dbg"; do \
28 if type python$$ver$$flavour >/dev/null; then \
29 echo Testing with python$$ver$$flavour; \
30 python$$ver$$flavour ./setup.py test -q; \
34 @if type pypy >/dev/null; then \
35 echo Testing with pypy; \
36 pypy ./setup.py test -q; \
42 trap 'rm $$TESTFILE' EXIT; \
43 for ver in 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5; do \
44 if type python$$ver >/dev/null; then \
45 echo Benchmarking with python$$ver; \
46 python$$ver ./setup.py build -q; \
47 echo " - set (with override)"; \
48 python$$ver -m timeit -s 'import xattr' "xattr.set('$$TESTFILE', 'user.comment', 'hello')"; \
50 python$$ver -m timeit -s 'import xattr' "xattr.list('$$TESTFILE')"; \
52 python$$ver -m timeit -s 'import xattr' "xattr.get('$$TESTFILE', 'user.comment')"; \
53 echo " - set + remove"; \
54 python$$ver -m timeit -s 'import xattr' "xattr.set('$$TESTFILE', 'user.comment', 'hello'); xattr.remove('$$TESTFILE', 'user.comment')"; \
60 $(MAKE) test CFLAGS="-coverage"
61 lcov --capture --directory . --output-file coverage.info
62 genhtml coverage.info --output-directory out
65 rm -rf $(DOCHTML) $(DOCTREES)
70 .PHONY: doc test clean dist coverage