1
#!/bin/sh
2
3
###############################################################################
4
#
5
# Author: Lasse Collin
6
#
7
# This file has been put into the public domain.
8
# You can do whatever you want with this file.
9
#
10
###############################################################################
11
12
# The result of using "autoreconf -fi" should be identical to using this
13
# script. I'm leaving this script here just in case someone finds it useful.
14
15
set -e -x
16
17
${AUTOPOINT:-autopoint} -f
18
${LIBTOOLIZE:-libtoolize} -c -f || glibtoolize -c -f
19
${ACLOCAL:-aclocal} -I m4
20
${AUTOCONF:-autoconf}
21
${AUTOHEADER:-autoheader}
22
${AUTOMAKE:-automake} -acf --foreign