File: Makefile

package info (click to toggle)
pygrace 0.4p2-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 184 kB
  • ctags: 152
  • sloc: python: 1,134; makefile: 15
file content (12 lines) | stat: -rw-r--r-- 182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
DESTDIR =

all:

clean:
	rm -rf build pygrace.egg-info/
	rm -f *~

install: all
	python setup.py install --root=$(DESTDIR) --prefix=/usr --no-compile -O0

.PHONY = clean all install