summaryrefslogtreecommitdiff
path: root/python2/Makefile
blob: 7667585498f894df232d40efce707d5f52e9962d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
EPYDOC=epydoc
DSTDOC=docstrings

doc: clean-doc
	$(EPYDOC) --html --graph=all -v -o $(DSTDOC) pyinotify.py

clean-doc:
	rm -rf $(DSTDOC)

clean: clean-doc
	find . \( -name '*~' -or \
		-name '*.pyc' -or \
		-name '*.pyo' \) \
		-print -exec rm {} \;