summaryrefslogtreecommitdiff
path: root/Makefile
blob: a7f070a47c8b2d69188aabf50fb203b05d0b6efd (plain)
1
2
3
4
5
6
7
8
nes:
	${CC} -o nes cpu.c rom.c

test: nes
	./nes ${HOME}/src/other/nes-test-roms/other/nestest.nes

clean:
	rm -f *.o nes