summaryrefslogtreecommitdiff
path: root/doc/makefile
blob: 02f5d544aa44b336e293e5bc483e337fd36e4919 (plain)
1
2
3
4
5
6
7
8
all: epydoc

epydoc:
	mkdir -p apidoc
	-epydoc --parse-only -o apidoc --html -v --no-private --exclude='test' --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" $(shell dirname $(CURDIR))/build/lib/logilab/common >/dev/null

clean:
	rm -rf apidoc