build: fixed the install name for python modules
[Samba/gebeck_regimport.git] / source4 / Makefile.waf
blob8d5e7455ed5f52978785512554c8ba12cdc5f625
1 # simple makefile wrapper to run waf
3 # don't enable WAFCACHE by default yet, as it doesn't
4 # have any way to limit its size. This could cause
5 # problems in the build farm
6 # WAF=WAFCACHE=$(HOME)/.wafcache ../buildtools/waf
8 WAF=../buildtools/waf
10 all:
11         $(WAF) build
13 install:
14         $(WAF) install
16 uninstall:
17         $(WAF) uninstall
19 test:
20         $(WAF) test
22 quicktest:
23         $(WAF) test --quick
25 clean:
26         $(WAF) clean
28 distclean:
29         rm -rf bin
31 # some compatibility make targets
32 everything: all
34 testsuite: all
36 check: test
38 torture: all
40 # this should do an install as well, once install is finished
41 installcheck: test