blob: dfd5b7db1f4924a084a9424ad91cd445bccf7518 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -e
aclocal -I m4
autoheader
libtoolize --automake
automake
autoconf
if [ "$1" = "-build" -o "$1" = "--build" ] ; then
shift
./configure "$@"
make
make check
fi
|