c65gm/examples/build_all.sh

11 lines
206 B
Bash
Executable file

#!/bin/sh
for dir in */; do
name="${dir%/}"
file="$dir/$name.c65"
if [ -f "$file" ]; then
echo "=== Building $name ==="
c65gm build --opt -i "$file"
echo ""
fi
done