mirror of
https://github.com/bebbo/amigaos-cross-toolchain.git
synced 2025-12-08 22:38:24 +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
|