aboutsummaryrefslogtreecommitdiff
path: root/bootstrap.sh
blob: 141ff9d5c82aae75274bd8ed197b392b9324c9e4 (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 no arguments in order to run.
EOF
	exit 2
fi

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