-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://svn-agbkb.informatik.uni-bremen.de/Hets/trunk@13899 cec4b9c1-7d33-0410-9eda-942365e851bb
- Loading branch information
Christian Maeder
authored and
Christian Maeder
committed
Aug 18, 2010
1 parent
7f4b96a
commit 834a709
Showing
2 changed files
with
6 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,17 @@ | ||
#!/bin/sh | ||
|
||
CVSROOT=:pserver:cvsread@cvs-agbkb.informatik.uni-bremen.de:/repository | ||
|
||
export CVSROOT | ||
|
||
for i in * | ||
do | ||
if [ -d $i ]; then | ||
echo "processing $i" | ||
cd $i | ||
if [ -f Makefile ] | ||
if [ -f Makefile ] | ||
then gmake | ||
elif [ -x run.sh ] | ||
elif [ -x run.sh ] | ||
then ./run.sh | ||
else echo "nothing done in $i" | ||
fi | ||
else echo "nothing done in $i" | ||
fi | ||
cd .. | ||
fi | ||
fi | ||
done | ||
|