fix CFLAGS problems
[supertux.git] / autogen.sh
1 #!/bin/sh
2
3 # Correct working directory?
4 if test ! -f configure.ac ; then
5   echo "*** Please invoke this script from directory containing configure.ac."
6   exit 1
7 fi
8
9 aclocal -I mk/autoconf
10 autoheader
11
12 # generate Jamconfig.in
13 cat > Jamconfig.in << __EOF__
14 CC = ;
15 CFLAGS = ;
16 LINK = ;
17 LINKFLAGS = ;
18 AR = ;
19 __EOF__
20 autoconf --trace=AC_SUBST \
21   | sed -e 's/configure.ac:[0-9]*:AC_SUBST:\([^:]*\).*/\1 ?= "@\1@" ;/g' \
22   | sed -e 's/.*BACKSLASH.*//' \
23   >> Jamconfig.in
24 echo 'INSTALL ?= "@INSTALL@" ;' >> Jamconfig.in
25 echo 'JAMCONFIG_READ = yes ;' >> Jamconfig.in
26
27 autoconf
28