mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-28 05:40:23 -04:00
11 lines
149 B
Text
11 lines
149 B
Text
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
for i in * ; do
|
||
|
|
if test -d $i ; then
|
||
|
|
cd $i || exit 1
|
||
|
|
./configure $COMPILE_ARGS || exit 1
|
||
|
|
make || exit 1
|
||
|
|
cd ..
|
||
|
|
fi
|
||
|
|
done
|