alsa-utils/cvscompile
Jaroslav Kysela f875ef4889 Added depcomp
2002-10-24 12:10:53 +00:00

16 lines
297 B
Bash

#!/bin/bash
aclocal $ACLOCAL_FLAGS
autoheader
automake --foreign --copy --add-missing
touch depcomp # for older automake
autoconf
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
./configure $@ || exit 1
unset CFLAGS
if [ -z "$CVSCOMPILE_NO_MAKE" ]; then
make
fi