summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTill Maas <opensource@till.name>2009-07-26 21:07:06 +0200
committerTill Maas <opensource@till.name>2009-07-26 21:07:06 +0200
commitd1f567fbc01a098c2e2d704170425a77a3edc396 (patch)
treeac891900e0f2c7a75af66c84ecb5671c75fde484 /Makefile
parent179e8af64e3855d0395dcfcbeec8aaa298c8016c (diff)
downloadcnucnu-d1f567fbc01a098c2e2d704170425a77a3edc396.tar.gz
cnucnu-d1f567fbc01a098c2e2d704170425a77a3edc396.tar.xz
cnucnu-d1f567fbc01a098c2e2d704170425a77a3edc396.zip
first epydoc experiments
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..052c446
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+html: FORCE
+ rm -rf html
+ epydoc --builtins --html --no-private --output html -v cnucnu/
+ #find -type f -name "*.html" -print0 | xargs -0 sed -i 's,"encoding=iso8859-1",encoding="utf-8",'
+
+view: html
+ xdg-open html/index.html
+
+check-doc:
+ epydoc --check cnucnu/
+
+FORCE: