bradgrantham-apple2e/Makefile

15 lines
448 B
Makefile
Raw Normal View History

INCFLAGS += -I/opt/local/include -I/opt/local/include/freetype2
2016-11-17 06:50:09 +00:00
CXXFLAGS += $(INCFLAGS) -g -Wall --std=c++11 -O
LDFLAGS += -L/opt/local/lib
LDLIBS += -lglfw -lfreeimageplus -lfreetype -framework OpenGL -framework Cocoa -framework IOkit
OBJECTS = apple2e.o keyboard.o dis6502.o fake6502.o interface.o
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
apple2e: $(OBJECTS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o $@ $(LDLIBS)
clean:
rm $(OBJECTS)