mirror of
https://github.com/cmosher01/v6502cpp.git
synced 2025-01-14 15:30:11 +00:00
15 lines
170 B
Makefile
15 lines
170 B
Makefile
CXXFLAGS=-g
|
|
|
|
all: v6502
|
|
|
|
v6502: v6502.o cpu.o
|
|
g++ $^ -o $@
|
|
|
|
v6502.o: v6502.cpp cpu.h addressbus.h
|
|
|
|
cpu.o: cpu.cpp cpu.h addressbus.h nodes.h
|
|
|
|
clean:
|
|
-rm *.o
|
|
-rm v6502
|