mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 19:45:41 +01:00
13 lines
229 B
Bash
13 lines
229 B
Bash
#!/bin/bash
|
|
|
|
aclocal $ACLOCAL_FLAGS
|
|
automake --foreign
|
|
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
|