Add basic autogen.sh

Since the buildsystem is now automake based, and a simple autoreconf
doesn't work, this adds a basic autogen.sh to automate building the
configure script.
master
Misty De Meo 13 years ago
parent 5d472b508e
commit bba4b7badb
  1. 15
      autogen.sh

@ -0,0 +1,15 @@
#!/bin/sh
if `which libtoolize` ; then
libtoolize
# on, e.g., Darwin
elif `which glibtoolize` ; then
glibtoolize
else
echo "libtoolize not found!"
exit 1
fi
aclocal
autoconf
automake --add-missing
Loading…
Cancel
Save