mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 22:45:43 +01:00
11 lines
176 B
Bash
11 lines
176 B
Bash
#!/bin/bash
|
|
|
|
aclocal $ACLOCAL_FLAGS
|
|
automake --foreign
|
|
autoconf
|
|
export CFLAGS='-O2 -Wall -pipe -g'
|
|
echo "CFLAGS=$CFLAGS"
|
|
echo "./configure $@"
|
|
./configure $@
|
|
unset CFLAGS
|
|
make
|