Home | History | Annotate | Download | only in alsa-lib
      1 #!/bin/bash
      2 
      3 set -e
      4 
      5 touch ltconfig
      6 libtoolize --force --copy --automake
      7 aclocal $ACLOCAL_FLAGS
      8 autoheader
      9 automake --foreign --copy --add-missing
     10 touch depcomp		# seems to be missing for old automake
     11 autoconf
     12 export CFLAGS='-O2 -Wall -W -pipe -g'
     13 echo "CFLAGS=$CFLAGS"
     14 echo "./configure $@"
     15 ./configure $@ || exit 1
     16 unset CFLAGS
     17 if [ -z "$GITCOMPILE_NO_MAKE" ]; then
     18   make
     19 fi
     20