aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
blob: a2d33c893077ff5fabac8a504b64ee8579930586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh
#copied by ianw from ipbench (originally from oprofile 18-11-2003)

# run to generate needed files not in CVS

# NB: if you run this file with AUTOMAKE, AUTOCONF, etc. environment
# variables set, you *must* run "configure" with the same variables
# set. this is because "configure" will embed the values of these variables
# into the generated Makefiles, as @AUTOMAKE@, @AUTOCONF@ etc. and it will
# trigger regeneration of configuration state using those programs when any
# of Makefile.am etc. change.

run() {
	echo "Running $1 ..."
	$1
}

set -e

ACLOCAL=${ACLOCAL:-aclocal}
AUTOHEADER=${AUTOHEADER:-autoheader}
AUTOCONF=${AUTOCONF:-autoconf}

if test -n "$1"; then
	echo "autogen.sh doesn't take any options" >&2
	exit 1
fi

run "$ACLOCAL"
run "$AUTOHEADER"
run "$AUTOCONF"