Changes in graphics_library/makefile [2e5aa0c:af116c0] in network-game
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
graphics_library/makefile
r2e5aa0c raf116c0 1 1 CC = g++ 2 LIB_FLAGS = -lGL -lglut -lGLEW -lglfw2 LIB_FLAGS = -lGL -lglut -lGLEW `pkg-config glfw3 --static --cflags --libs` 3 3 FLAGS = -Wall 4 DEPENDENCIES = 4 DEPENDENCIES = common/texture.o common/controls.o common/shader.o 5 5 6 6 graphics_engine : main.cpp $(DEPENDENCIES) … … 11 11 12 12 clean: 13 rm graphics_engine 14 rm *.o 13 rm -f *.o 14 rm -f common/*.o 15 rm -f graphics_engine
Note:
See TracChangeset
for help on using the changeset viewer.