aboutsummaryrefslogtreecommitdiff
path: root/bootstrap.sh
blob: 9a132eaf2741126edd96fc82136c11530ab113bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
if [ $# -ne 0 ]; then
	cat >&2 << EOF
Bootstrap the project directory for Autoconf and Automake. Run this script after
making changes to .ac and .am files.
Usage: $0

The script requires that no argument is passed in order to run.
EOF
	exit 2
fi

aclocal &&
	autoheader &&
	automake --add-missing --copy &&
	autoconf