summaryrefslogtreecommitdiff
path: root/source4/Makefile.waf
blob: 50a55ab84f5745544f5e980c6b717440003c8d73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# very crude Makefile to run waf
WAF=WAFCACHE=$(HOME)/.wafcache ../buildtools/waf

all:
	$(WAF) build -v

install:
	$(WAF) install

uninstall:
	$(WAF) uninstall

clean:
	$(WAF) clean

distclean:
	rm -rf bin

*:
	echo "target not implemented"