From 5aea78076183acf0cd0422ac965e2fea2f9bdb76 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Mon, 27 May 2013 01:10:51 +0200 Subject: [PATCH] added docs/ --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile 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 +