mirror of
https://github.com/bradgrantham/apple2e.git
synced 2024-11-18 05:11:48 +00:00
7 lines
110 B
Makefile
7 lines
110 B
Makefile
CXXFLAGS=-Wall --std=c++11
|
|
|
|
all: apple2e
|
|
|
|
apple2e: apple2e.o keyboard.o
|
|
$(CXX) $(LDFLAGS) $^ -o $@ $(LDLIBS)
|