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

install: all
	make -C src install DESTDIR=$(abspath $(DESTDIR))