# 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