mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2026-02-05 04:06:31 -05:00
10 lines
149 B
Bash
Executable file
10 lines
149 B
Bash
Executable file
#!/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
|