13 lines
132 B
Makefile
13 lines
132 B
Makefile
|
|
all: nesgame.nes
|
||
|
|
nesgame.nes : nesgame.S
|
||
|
|
NESASM3 $<
|
||
|
|
|
||
|
|
.PHONY: test
|
||
|
|
test:
|
||
|
|
fceux nesgame.nes
|
||
|
|
|
||
|
|
.PHONY: clean
|
||
|
|
clean:
|
||
|
|
rm *nes
|
||
|
|
rm *fns
|