Files
scoundrel-ports/nes/Makefile
T

10 lines
145 B
Makefile
Raw Normal View History

2026-01-08 17:22:53 +02:00
CFILES = nescoundrel.c
OUTFILE = scoundrel.nes
$(OUTFILE): $(CFILES)
cl65 -t nes -O -Os $(CFILES) -o $(OUTFILE)
clean:
rm -f $(OUTFILE) *.o