emu_nes

An NES emulator for learning how the 6502 and similar computers of the era worked
Log | Files | Refs | README | LICENSE

Makefile (204B)


      1 CFLAGS = -O2 -Wall -Wextra -pedantic -Wno-unused-parameter
      2 
      3 nes:
      4 	${CC} ${CFLAGS} -o nes cpu.c rom.c ppu.c apu.c
      5 
      6 test: nes
      7 	./nes ${HOME}/src/other/nes-test-roms/other/nestest.nes
      8 
      9 clean:
     10 	rm -f *.o nes