This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nesgame/Makefile

13 lines
132 B
Makefile
Raw Normal View History

all: nesgame.nes
nesgame.nes : nesgame.S
NESASM3 $<
.PHONY: test
test:
fceux nesgame.nes
.PHONY: clean
clean:
rm *nes
rm *fns