aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: e4d4cc82998a8ad14c4d9cf847eb1b178e73a7ea (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

AUTORECONF=$(which autoreconf)

if [ -x "${AUTORECONF}" ]; then
  ${AUTORECONF} -fiv || exit 1
else
  aclocal && autoconf || exit 1
fi
echo "now run './configure'" 1>&2
echo "for help on args run './configure --help'" 1>&2