summaryrefslogtreecommitdiff
path: root/run_autotools
blob: ce72b357dd10681d630cbb016a257e462ddc005b (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

echo "Running aclocal..."
aclocal || exit 1
echo "Running autoheader..."
autoheader || exit 1
echo "Running autoconf..."
autoconf || exit 1
echo "Running automake..."
automake --add-missing --copy || exit 1
echo "Finished."