diff options
author | Brian Paul <[email protected]> | 2009-06-29 10:32:04 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-06-29 10:32:04 -0600 |
commit | b1f2f92d9b2d190d39fb1b5c919c59c9539a025a (patch) | |
tree | b5bdfaaa6bf28244e7beffc2d2c5b41e7b59446e /progs/glsl | |
parent | b799af91d5ffbee1481161fec29eb4c92b161272 (diff) |
progs/glsl: link with GLEW library
Diffstat (limited to 'progs/glsl')
-rw-r--r-- | progs/glsl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index f97cdb69429..eedd866c957 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -10,7 +10,7 @@ LIB_DEP = \ $(TOP)/$(LIB_DIR)/$(GLU_LIB_NAME) \ $(TOP)/$(LIB_DIR)/$(GLUT_LIB_NAME) -LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) $(APP_LIB_DEPS) +LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLEW_LIB) -l$(GLU_LIB) -l$(GL_LIB) $(APP_LIB_DEPS) INCLUDE_DIRS = -I$(TOP)/progs/util |