diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..48741f1 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ + +all: + +clean: + rm -rf docs + rm -rf log + find . -type f -name "*.pyc" -exec rm -f {} \; + +docs: + epydoc --html -o docs ./lib + +docs-pdf: + epydoc --pdf -o docs ./lib +