v6502cpp/Makefile

13 lines
157 B
Makefile
Raw Normal View History

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:
2013-11-26 06:21:17 +00:00
-rm *.o
-rm v6502