s4-torture Add tests for DES-only accounts PAC behaviour/validation.
[kai/samba.git] / source4 / Makefile
1 # simple makefile wrapper to run waf
2
3 WAF=WAF_MAKE=1 ../buildtools/bin/waf
4
5 all:
6         $(WAF) build
7
8 install:
9         $(WAF) install
10
11 uninstall:
12         $(WAF) uninstall
13
14 test:
15         $(WAF) test $(TEST_OPTIONS)
16
17 subunit-test:
18         $(WAF) test --filtered-subunit $(TEST_OPTIONS)
19
20 testenv:
21         $(WAF) test --testenv $(TEST_OPTIONS)
22
23 quicktest:
24         $(WAF) test --quick $(TEST_OPTIONS)
25
26 dist:
27         $(WAF) dist
28
29 distcheck:
30         $(WAF) distcheck
31
32 clean:
33         $(WAF) clean
34
35 distclean:
36         $(WAF) distclean
37
38 reconfigure: configure
39         $(WAF) reconfigure
40
41 show_waf_options:
42         $(WAF) --help
43
44 # some compatibility make targets
45 everything: all
46
47 testsuite: all
48
49 check: test
50
51 torture: all
52
53 # this should do an install as well, once install is finished
54 installcheck: test
55
56 etags:
57         $(WAF) etags
58
59 ctags:
60         $(WAF) ctags
61
62 # this allows for things like "make bin/smbtorture"
63 bin/%:: FORCE
64         $(WAF) --targets=`basename $@`
65 FORCE: