DON'T USE THIS REPO: IT'S OBSOLETE.
[versaplex.git] / configure
blob4330eb896b80ea434bc9d9e9c1c3b6d9b13d00c1
1 #!/bin/sh -x
2 set -e
3 test -e wv/Makefile || ./get-git-modules
5 rm -f config.mk
6 cat >config.mk <<EOF
7 BUILD_TARGET=`uname`
8 EOF
10 # We tell the autobuilder to ignore warnings in the 'wv' directory, as
11 # they're not our fault. That project should have its own autobuilder.
12 echo --START-IGNORE-WARNINGS
13 (cd wv && ./configure) || exit $?
14 echo --STOP-IGNORE-WARNINGS
16 (cd vxodbc && make configure && ./configure) || exit $?