1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3if which libtoolize > /dev/null; then
4  echo "Found libtoolize"
5  libtoolize -c
6elif which glibtoolize > /dev/null; then
7  echo "Found glibtoolize"
8  glibtoolize -c
9else
10  echo "Failed to find libtoolize or glibtoolize, please ensure it is installed and accessible via your PATH env variable"
11  exit 1
12fi;
13#autoreconf -fv --install
14autoreconf -fvi
15echo "You can now run \"./configure\" and then \"make\"."
16