Added compile script

This commit is contained in:
Jaroslav Kysela 2008-06-03 11:40:27 +02:00
parent 1b3db14159
commit 414a35f120
2 changed files with 10 additions and 3 deletions

10
compile Executable file
View 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