bradgrantham-apple2e/Makefile

7 lines
123 B
Makefile
Raw Normal View History

2016-11-08 05:22:21 +00:00
CXXFLAGS=-O -Wall --std=c++11
2016-11-06 20:40:41 +00:00
2016-11-06 07:53:43 +00:00
all: apple2e
2016-11-06 21:57:45 +00:00
2016-11-08 05:22:21 +00:00
apple2e: apple2e.o keyboard.o dis6502.o
2016-11-06 21:57:45 +00:00
$(CXX) $(LDFLAGS) $^ -o $@ $(LDLIBS)