17 lines
269 B
Makefile
17 lines
269 B
Makefile
all: doc test
|
|
|
|
test:
|
|
PYTHONPATH=lib python3 -m unittest discover -s test
|
|
pep8 .
|
|
pyflakes3 .
|
|
|
|
doc:
|
|
(cd doc && $(MAKE) all)
|
|
|
|
clean:
|
|
(cd doc && $(MAKE) clean)
|
|
find -name __pycache__ | xargs rm -fr
|
|
find -name *.pyc | xargs rm -f
|
|
rm -f README.html
|
|
|
|
.PHONY: test doc
|