c65gm/examples/build_all.sh

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