summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 74e304cd2e64d412faab590f7ad10ca78eee5910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Dependencies: epydoc python-docutils
html: FORCE
	rm -rf html
	epydoc --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/

check:
	py.test

FORCE: