summaryrefslogtreecommitdiff
path: root/Makefile
blob: c6481cfea101ec0bfe855bb8de3d0096f33b2023 (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 apu.c

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

clean:
	rm -f *.o nes