diff options
Diffstat (limited to 'cpp/bootstrap')
-rwxr-xr-x | cpp/bootstrap | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/cpp/bootstrap b/cpp/bootstrap index 253eff6a16..fe76a84989 100755 --- a/cpp/bootstrap +++ b/cpp/bootstrap @@ -1,8 +1,13 @@ #!/bin/sh +set -e aclocal -I m4 autoheader libtoolize --automake + +# Generate (for automake) lots of repetitive parts of tests/Makefile.am. +(cd tests && rm -f gen.mk + perl -ne '/^include / or print' Makefile.am \ + | make -f - abs_srcdir=`dirname $(pwd)` gen.mk ) + automake autoconf -./configure --enable-warnings --prefix=/tmp/qpid-inst CXXFLAGS=-g - |