mirror of
https://github.com/bradgrantham/apple2e.git
synced 2024-12-29 14:29:53 +00:00
3dbc37ba35
Introduce GLEW for GL extension management Fix warnings about "&" used in logical-AND with precedence likely not matching programmer's intent Fix a GL shader type incompatibility uint vs int in lores shader Add Makefile.linux
17 lines
359 B
Makefile
17 lines
359 B
Makefile
INCFLAGS += -I/opt/local/include
|
|
CXXFLAGS += $(INCFLAGS) -g -Wall --std=c++11 -O2
|
|
LDFLAGS += -L/opt/local/lib
|
|
LDLIBS += -lglfw -lao -lGL -lGLEW
|
|
|
|
OBJECTS = apple2e.o dis6502.o fake6502.o interface.o
|
|
|
|
# keyboard.o
|
|
|
|
all: apple2e
|
|
|
|
apple2e: $(OBJECTS)
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) $^ -o $@ $(LDLIBS)
|
|
|
|
clean:
|
|
rm $(OBJECTS)
|