bradgrantham-apple2e/Makefile

15 lines
390 B
Makefile
Raw Normal View History

2016-11-24 00:36:43 +00:00
INCFLAGS += -I/opt/local/include
2016-11-17 06:50:09 +00:00
CXXFLAGS += $(INCFLAGS) -g -Wall --std=c++11 -O
LDFLAGS += -L/opt/local/lib
2016-11-24 00:36:43 +00:00
LDLIBS += -lglfw -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)