11 lines
191 B
Bash
Executable file
11 lines
191 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for dir in */; do
|
|
name="${dir%/}"
|
|
file="$dir/$name.c65"
|
|
if [ -f "$file" ]; then
|
|
echo "=== Building $name ==="
|
|
c65gm "$file"
|
|
echo ""
|
|
fi
|
|
done
|