File: Makefile.in

package info (click to toggle)
tagpy 0.94.8-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 476 kB
  • sloc: python: 1,163; cpp: 807; makefile: 45; sh: 5
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