tsocket: fill in sa.sa_len if the system supports it
[Samba/gebeck_regimport.git] / lib / talloc / Makefile
blob5b8220c6cb7fc476f57dc9dfb8eac50417343a94
1 # simple makefile wrapper to run waf
3 WAF=WAF_MAKE=1 PATH=buildtools/bin:../../buildtools/bin:$$PATH waf
5 all:
6 $(WAF) build
8 install:
9 $(WAF) install
11 uninstall:
12 $(WAF) uninstall
14 test:
15 $(WAF) test $(TEST_OPTIONS)
17 testenv:
18 $(WAF) test --testenv $(TEST_OPTIONS)
20 quicktest:
21 $(WAF) test --quick $(TEST_OPTIONS)
23 dist:
24 $(WAF) dist
26 distcheck:
27 $(WAF) distcheck
29 clean:
30 $(WAF) clean
32 distclean:
33 $(WAF) distclean
35 reconfigure: configure
36 $(WAF) reconfigure
38 show_waf_options:
39 $(WAF) --help
41 # some compatibility make targets
42 everything: all
44 testsuite: all
46 check: test
48 torture: all
50 # this should do an install as well, once install is finished
51 installcheck: test
53 etags:
54 $(WAF) etags
56 ctags:
57 $(WAF) ctags
59 bin/%:: FORCE
60 $(WAF) --targets=`basename $@`
61 FORCE: