s4:torture/ldap/ldap_sort.c - There should be used the "base_dn" not the "root_dn...
[Samba/gebeck_regimport.git] / buildtools / scripts / Makefile.waf
bloba1c4b695251cdc2fbf95fee7f53e5b49dc8ebe90
1 # simple makefile wrapper to run waf
3 # default to using only 1 cpu, to be friendly to build
4 # farm machines. I wonder how we get at the -jN option
5 # from make to pass it to waf?
6 JOBS=1
8 WAF=JOBS=$(JOBS) BUILDTOOLS/bin/waf
10 all:
11         $(WAF) build
13 install:
14         $(WAF) install
16 uninstall:
17         $(WAF) uninstall
19 test:
20         $(WAF) test $(if $(TESTS),--tests="$(TESTS)")
22 quicktest:
23         $(WAF) test --quick $(if $(TESTS),--tests="$(TESTS)")
25 dist:
26         $(WAF) dist
28 clean:
29         $(WAF) clean
31 distclean: clean
32         rm -rf bin
34 # some compatibility make targets
35 everything: all
37 testsuite: all
39 check: test
41 torture: all
43 # this should do an install as well, once install is finished
44 installcheck: test
46 etags:
47         $(WAF) etags
49 ctags:
50         $(WAF) ctags
52 configure: autogen-waf.sh BUILDTOOLS/scripts/configure.waf
53         @echo "please run ./autogen-waf.sh to regenerate $@"
54         @-false
56 Makefile: autogen-waf.sh configure BUILDTOOLS/scripts/Makefile.waf
57         @echo "please run ./autogen-waf.sh to regenerate $@"
58         @false