s3: libsmb: Cleanup in get_dc_list()
[Samba.git] / lib / ldb / Makefile
blobb82723f35ed80ec3fedec8ad5b183cc6c664b18c
1 # simple makefile wrapper to run waf
3 WAF_BIN=`PATH=buildtools/bin:../../buildtools/bin:$$PATH which waf`
4 WAF_BINARY=$(PYTHON) $(WAF_BIN)
5 WAF=PYTHONHASHSEED=1 WAF_MAKE=1 $(WAF_BINARY)
7 all:
8 $(WAF) build
10 install:
11 $(WAF) install
13 uninstall:
14 $(WAF) uninstall
16 test:
17 $(WAF) test $(TEST_OPTIONS)
19 dist:
20 touch .tmplock
21 WAFLOCK=.tmplock $(WAF) dist
23 distcheck:
24 touch .tmplock
25 WAFLOCK=.tmplock $(WAF) distcheck
27 clean:
28 $(WAF) clean
30 distclean:
31 $(WAF) distclean
33 reconfigure: configure
34 $(WAF) reconfigure
36 show_waf_options:
37 $(WAF) --help
39 # some compatibility make targets
40 everything: all
42 testsuite: all
44 check: test
46 # this should do an install as well, once install is finished
47 installcheck: test
49 etags:
50 $(WAF) etags
52 ctags:
53 $(WAF) ctags