Files
scoundrel-ports/nes/Makefile
T
2026-01-08 17:22:53 +02:00

10 lines
145 B
Makefile

CFILES = nescoundrel.c
OUTFILE = scoundrel.nes
$(OUTFILE): $(CFILES)
cl65 -t nes -O -Os $(CFILES) -o $(OUTFILE)
clean:
rm -f $(OUTFILE) *.o