|
#!/bin/sh
|
|
# Run this script to generate the configure script and Makefile.in files
|
|
|
|
set -e
|
|
|
|
echo "Running aclocal..."
|
|
aclocal
|
|
|
|
echo "Running autoconf..."
|
|
autoconf
|
|
|
|
echo "Running automake..."
|
|
automake --add-missing --copy
|
|
|
|
echo "Done. Now run ./configure && make"
|