# vim: shiftwidth=4 tabstop=4 noexpandtab DESTDIR="" # leave empty for the current system or provide a fakeroot here PREFIX="/usr" .PHONY: all clean install all: make -C src all clean: make -C src clean find . -type d -iname '__pycache__' -exec rm -rf {} +; install: all make -C src install DESTDIR=$(abspath $(DESTDIR))