bradgrantham-apple2e/Makefile

7 lines
110 B
Makefile
Raw Normal View History

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