10 lines
145 B
Makefile
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
|