]> arthur.barton.de Git - netatalk.git/blob - bootstrap
Merge master
[netatalk.git] / bootstrap
1 #!/bin/sh
2
3 set -x
4
5 rm -rf autom4te*.cache
6
7 # build it all.
8 aclocal -I macros $ACLOCAL_FLAGS || exit 1
9 autoheader || exit 1
10 libtoolize --force --copy
11 automake --include-deps --add-missing --foreign --copy || exit 1
12 autoconf || exit 1
13
14 # Let's not fall off the end...
15 exit 0