Changeset fccd588 in network-game for graphics_library/makefile
- Timestamp:
- Jan 8, 2019, 9:43:52 PM (6 years ago)
- Branches:
- master
- Children:
- ea3a3a9
- Parents:
- 8cbeffc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
graphics_library/makefile
r8cbeffc rfccd588 1 OS = $(shell uname) 1 2 CC = g++ 2 LIB_FLAGS = -lGL -lglut -lGLEW `pkg-config glfw3 --static --cflags --libs`3 3 FLAGS = -Wall 4 4 DEPENDENCIES = common/texture.o common/controls.o common/shader.o 5 6 ifeq ($(OS),Darwin) 7 LIB_FLAGS = -framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo -lglfw3 -lglew 8 endif 9 ifeq ($(OS),Linux) 10 LIB_FLAGS = -lGL -lglut -lGLEW `pkg-config glfw3 --static --cflags --libs` 11 endif 5 12 6 13 graphics_engine : main.cpp $(DEPENDENCIES)
Note:
See TracChangeset
for help on using the changeset viewer.