auth/credentials: don't ignore "client use kerberos" and --use-kerberos for machine...
[Samba.git] / lib / replace / Makefile
bloba123a37b937213be67c71fe65edb97123d6ed8e1
1 # simple makefile wrapper to run waf
3 WAF_BINARY=$(PYTHON) ../../buildtools/bin/waf
4 WAF=PYTHONHASHSEED=1 WAF_MAKE=1 $(WAF_BINARY)
6 all:
7 $(WAF) build
9 install:
10 $(WAF) install
12 uninstall:
13 $(WAF) uninstall
15 test:
16 $(WAF) test $(TEST_OPTIONS)
18 testenv:
19 $(WAF) test --testenv $(TEST_OPTIONS)
21 quicktest:
22 $(WAF) test --quick $(TEST_OPTIONS)
24 dist:
25 touch .tmplock
26 WAFLOCK=.tmplock $(WAF) dist
28 distcheck:
29 touch .tmplock
30 WAFLOCK=.tmplock $(WAF) distcheck
32 clean:
33 $(WAF) clean
35 distclean:
36 $(WAF) distclean
38 reconfigure: configure
39 $(WAF) reconfigure
41 show_waf_options:
42 $(WAF) --help
44 # some compatibility make targets
45 everything: all
47 testsuite: all
49 check: test
51 torture: all
53 # this should do an install as well, once install is finished
54 installcheck: test
56 etags:
57 $(WAF) etags
59 ctags:
60 $(WAF) ctags
62 bin/%:: FORCE
63 $(WAF) --targets=`basename $@`
64 FORCE: