summaryrefslogtreecommitdiff
path: root/source3/lib/ldb/standalone.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/ldb/standalone.sh')
-rwxr-xr-xsource3/lib/ldb/standalone.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/source3/lib/ldb/standalone.sh b/source3/lib/ldb/standalone.sh
new file mode 100755
index 0000000000..fa1b9bafe3
--- /dev/null
+++ b/source3/lib/ldb/standalone.sh
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+cd ../replace
+make clean
+
+cd ../talloc
+make clean
+
+cd ../tdb
+make clean
+
+cd ../ldb
+make clean
+
+./autogen.sh
+
+rm -fr build
+mkdir build
+cd build
+
+../configure $*
+make dirs
+make all
+
+cd ..