aboutsummaryrefslogtreecommitdiff
path: root/bootstrap.sh
blob: dd3ec17c2e0a3b82bac971e1796fcf5533f32e3d (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 &&
	automake --add-missing --copy &&
	autoconf &&
	autoheader