summaryrefslogtreecommitdiffstats
path: root/ldb/standalone.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ldb/standalone.sh')
-rwxr-xr-xldb/standalone.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/ldb/standalone.sh b/ldb/standalone.sh
new file mode 100755
index 000000000..8ab081e0f
--- /dev/null
+++ b/ldb/standalone.sh
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+cd ../replace
+make clean
+
+cd ../talloc
+make clean
+
+cd ../tdb
+make clean
+
+cd ../events
+make clean
+
+cd ../ldb
+make clean
+
+./autogen.sh
+
+rm -fr build
+mkdir build
+cd build
+
+../configure $*
+make dirs
+make all
+
+cd ..