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

                         
 


                              

                               
             
 

                                                       

        


                    

                                       

                      

           



                               
#!/bin/sh -e

rm -rf config.cache build
mkdir build

# create po/Makefile.in.in
glib-gettextize --force --copy

# add aclocal.m4 to current dir
echo "aclocal..."
aclocal -I 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