blob: c3a3660f5e2a1ab3537d1da7a3245a29f64e302a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# vim: shiftwidth=4 tabstop=4 noexpandtab
DESTDIR="" # leave empty for the current system or provide a fakeroot here
.PHONY: all clean install
all:
python setup.py build
clean:
rm -rf build
install: all
python setup.py install --root=$(DESTDIR) --optimize=1 --skip-build
|