v6502cpp/Makefile
Christopher Mosher 3a0229555b first version to compile and link OK
removed redundant code from v6502.cpp;
moved relevant code from v6502.cpp to addressbus.h
added crude Makefile
fix other compilation errors
2013-11-25 23:14:22 -05:00

12 lines
145 B
Makefile

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