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