mirror of
https://github.com/bradgrantham/apple2e.git
synced 2024-12-28 08:29:40 +00:00
c81a6a8dce
More const on char*s Remove virtual from MAINboard read and write and just call them directly Move up regions slightly so they might perform better
18 lines
414 B
Makefile
18 lines
414 B
Makefile
INCFLAGS += -I/opt/local/include
|
|
CXXFLAGS += $(INCFLAGS) -g -Wall --std=c++11 -O2
|
|
LDFLAGS += -L/opt/local/lib
|
|
LDLIBS += -lglfw -lao -framework OpenGL -framework Cocoa -framework IOkit
|
|
|
|
OBJECTS = apple2e.o dis6502.o interface.o gl_utility.o
|
|
# fake6502.o
|
|
|
|
# keyboard.o
|
|
|
|
all: apple2e
|
|
|
|
apple2e: $(OBJECTS)
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o $@ $(LDLIBS)
|
|
|
|
clean:
|
|
rm $(OBJECTS)
|