mirror of
https://github.com/alsa-project/alsa-utils
synced 2025-01-03 14:09:44 +01:00
10 lines
135 B
Text
10 lines
135 B
Text
|
#!/bin/bash
|
||
|
|
||
|
aclocal
|
||
|
automake --foreign
|
||
|
autoconf
|
||
|
export CFLAGS='-O2 -fomit-frame-pointer -Wall -pipe -g'
|
||
|
./configure
|
||
|
unset CFLAGS
|
||
|
make
|