mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-28 05:40:23 -04:00
Added compile script
This commit is contained in:
parent
1b3db14159
commit
414a35f120
2 changed files with 10 additions and 3 deletions
10
compile
Executable file
10
compile
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
#!/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
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
make CVSCOMPILE_ARGS="$*"
|
||||
Loading…
Add table
Add a link
Reference in a new issue