emu_nes/Makefile

9 lines
122 B
Makefile

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