mirror of
https://github.com/bradgrantham/apple2e.git
synced 2025-01-01 03:31:18 +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)
|