File: Makefile

package info (click to toggle)
pyinotify 0.8.9-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,076 kB
  • ctags: 5,038
  • sloc: python: 2,094; makefile: 43; sh: 6
file content (14 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (16)
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 {} \;