summaryrefslogtreecommitdiff
path: root/lib/tdb2/Makefile
diff options
context:
space:
mode:
authorAmitay Isaacs <amitay@gmail.com>2012-02-21 15:29:52 +1030
committerRusty Russell <rusty@rustcorp.com.au>2012-02-21 15:29:52 +1030
commitabc74723cebcab30987bb16e359645ba37eb6c95 (patch)
tree97520d405853d44653175927f854bf44d72dbbb8 /lib/tdb2/Makefile
parentf7b999fac0b6d00c8e60012eba3de2fd59d8c854 (diff)
downloadsamba-abc74723cebcab30987bb16e359645ba37eb6c95.tar.gz
samba-abc74723cebcab30987bb16e359645ba37eb6c95.tar.bz2
samba-abc74723cebcab30987bb16e359645ba37eb6c95.zip
lib/tdb2: Convert tdb2 to a standalone library
Adds a Makefile, configure script, and tdb2.pc.in. Signed-off-by: Amitay Isaacs <amitay@gmail.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/tdb2/Makefile')
-rw-r--r--lib/tdb2/Makefile66
1 files changed, 66 insertions, 0 deletions
diff --git a/lib/tdb2/Makefile b/lib/tdb2/Makefile
new file mode 100644
index 0000000000..fe44ff6b56
--- /dev/null
+++ b/lib/tdb2/Makefile
@@ -0,0 +1,66 @@
+# simple makefile wrapper to run waf
+
+WAF=WAF_MAKE=1 PATH=buildtools/bin:../../buildtools/bin:$$PATH waf
+
+all:
+ $(WAF) build
+
+install:
+ $(WAF) install
+
+uninstall:
+ $(WAF) uninstall
+
+test: FORCE
+ $(WAF) test $(TEST_OPTIONS)
+
+testenv:
+ $(WAF) test --testenv $(TEST_OPTIONS)
+
+quicktest:
+ $(WAF) test --quick $(TEST_OPTIONS)
+
+dist:
+ touch .tmplock
+ WAFLOCK=.tmplock $(WAF) dist
+
+distcheck:
+ touch .tmplock
+ WAFLOCK=.tmplock $(WAF) distcheck
+
+clean:
+ $(WAF) clean
+
+distclean:
+ $(WAF) distclean
+
+reconfigure: configure
+ $(WAF) reconfigure
+
+show_waf_options:
+ $(WAF) --help
+
+# some compatibility make targets
+everything: all
+
+testsuite: all
+
+check: test
+
+torture: all
+
+# this should do an install as well, once install is finished
+installcheck: test
+
+etags:
+ $(WAF) etags
+
+ctags:
+ $(WAF) ctags
+
+pydoctor:
+ $(WAF) pydoctor
+
+bin/%:: FORCE
+ $(WAF) --targets=`basename $@`
+FORCE: