alsa-utils/cvscompile

19 lines
435 B
Text
Raw Normal View History

1999-01-30 20:12:34 +01:00
#!/bin/bash
2003-11-24 09:13:37 +01:00
if test -d ../alsa-lib/utils && ! test -r `aclocal --print-ac-dir`/alsa.m4; then
2003-05-01 10:28:15 +02:00
alsa_m4_flags="-I ../alsa-lib/utils"
fi
aclocal $alsa_m4_flags $ACLOCAL_FLAGS
2002-08-06 09:09:12 +02:00
autoheader
2002-10-23 17:00:24 +02:00
automake --foreign --copy --add-missing
2002-10-24 14:10:53 +02:00
touch depcomp # for older automake
1999-01-30 20:12:34 +01:00
autoconf
1999-07-22 10:37:35 +02:00
export CFLAGS='-O2 -Wall -pipe -g'
1999-02-17 10:45:08 +01:00
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
./configure $@ || exit 1
1999-01-30 20:12:34 +01:00
unset CFLAGS
if [ -z "$CVSCOMPILE_NO_MAKE" ]; then
make
fi