summaryrefslogtreecommitdiff
path: root/Makefile
blob: 12b7a6f56fc3fd7b068f9d739902d3be8d38ae67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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))