mirror of
https://frontier.innolan.net/github/amigaos-cross-toolchain6.git
synced 2024-10-19 10:29:55 +00:00
9 lines
125 B
Plaintext
Executable File
9 lines
125 B
Plaintext
Executable File
for t in test* ; do
|
|
if [ -d $t ]; then
|
|
echo cc $t
|
|
pushd $t
|
|
./cc || { popd; echo $t failed; exit 1; }
|
|
popd
|
|
fi
|
|
done
|