summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 740f06bc595b8361fbc2228f26d2f8718bb07953 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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/

FORCE: