summaryrefslogtreecommitdiff
path: root/devtools/do-build
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/do-build')
-rwxr-xr-xdevtools/do-build19
1 files changed, 19 insertions, 0 deletions
diff --git a/devtools/do-build b/devtools/do-build
new file mode 100755
index 00000000..326d62ed
--- /dev/null
+++ b/devtools/do-build
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# This script does a full build and check. Outputs are saved to files
+# BUILD. and CHECK. with the git version appended. The point is that
+# having regression test output from old versions is handy when
+# trouble arises.
+
+# This script should be run from the top-level directory.
+
+if [ ! -f gpsd.c ]; then
+ echo "do-build: not at top-level of gpsd"
+ exit 1
+fi
+
+version=`git describe`
+
+scons -c < /dev/null > /dev/null 2>&1
+scons $* < /dev/null > BUILD.$version 2>&1
+scons check < /dev/null > CHECK.$version 2>&1