mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:25:43 +01:00
14 lines
254 B
Bash
14 lines
254 B
Bash
#!/bin/bash
|
|
|
|
aclocal $ACLOCAL_FLAGS
|
|
autoheader
|
|
automake --foreign --add-missing
|
|
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
|