aboutsummaryrefslogblamecommitdiffstats
path: root/autogen.sh
blob: 1ab5e4cdff656c8b65e79429f78a6a2ee98005f2 (plain) (tree)
1
2
3
4
5
6
7
8
9
            
 
                      


                    

                               
                  
 

                                                       

        


                    

                                       

                      

           



                               
#!/bin/sh -e

# Generate config.h.in
echo "touch stamp-h"
touch stamp-h

# add aclocal.m4 to current dir
echo "aclocal..."
aclocal -I $PWD/m4

# This generates the configure script from configure.in
echo "autoconf..."
autoconf

echo "autoheader..."
autoheader

# Generate Makefile.in from Makefile.am
echo "automake..."
automake --add-missing


# configure
if test x$NOCONFIGURE = x; then
	echo "./configure $*"
	./configure $*
fi