added missing 'exceptions.h' and 'gettext.h' to Makefile.am
[supertux.git] / autogen.sh
1 #!/bin/sh
2
3 # we need a minimum of automake 1.6 and automake 1.8 seems to be buggy
4 # this doesn't seem to work well
5 # see AUTOMAKE_OPTIONS in Makefile.am
6 export WANT_AUTOMAKE=1.6
7
8 aclocal -I m4
9 automake --copy --add-missing
10 autoconf
11
12 # EOF #