diff buildsys/scripts/batch-build-linux.sh @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/buildsys/scripts/batch-build-linux.sh	Thu Mar 19 22:24:28 2015 +0100
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+cd `dirname $0`/../../
+
+# Build libraries.
+
+make -f Makefile.generic clean all
+
+# Build tests: dynload tests need '-ldl'.
+
+( cd test ; make -f Makefile.generic clean )
+( cd test ; LDLIBS=-ldl make -f Makefile.generic all-dynload )
+( cd test ; make -f Makefile.generic all )
+
+