File: Makefile.in

package info (click to toggle)
tagpy 0.94.5-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 360 kB
  • ctags: 222
  • sloc: python: 877; cpp: 791; makefile: 60
file content (17 lines) | stat: -rw-r--r-- 225 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY	: all install clean tags dist

all: tags
	${PYTHON_EXE} setup.py build

dist:
	${PYTHON_EXE} setup.py sdist

install: tags
	${PYTHON_EXE} setup.py install

clean:
	rm -Rf build
	rm -f tags

tags:
	ctags -R src || true