aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2016-08-02 17:55:04 +0200
committerraysan5 <raysan5@gmail.com>2016-08-02 17:55:04 +0200
commit50ccc39d6b58125912f73cdaa6121935e7bf4794 (patch)
tree452832e1599dd055bc27ffe07cb39a1442893717
parent68d647c1af1b9f0479f680dbd7c4f93586cd51a2 (diff)
downloadraylib-50ccc39d6b58125912f73cdaa6121935e7bf4794.tar.gz
raylib-50ccc39d6b58125912f73cdaa6121935e7bf4794.zip
Updated LIBs
-rw-r--r--games/makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/games/makefile b/games/makefile
index 2d992896..c48e4d68 100644
--- a/games/makefile
+++ b/games/makefile
@@ -86,8 +86,6 @@ else
# external libraries headers
# GLFW3
INCLUDES += -I../external/glfw3/include
-# GLEW - Not required any more, replaced by GLAD
- #INCLUDES += -I../external/glew/include
# OpenAL Soft
INCLUDES += -I../external/openal_soft/include
endif
@@ -103,8 +101,6 @@ else
ifneq ($(PLATFORM_OS),OSX)
# OpenAL Soft
LFLAGS += -L../external/openal_soft/lib/$(LIBPATH)
- # GLEW: Not used, replaced by GLAD
- #LFLAGS += -L../../external/glew/lib/$(LIBPATH)
endif
endif
@@ -115,9 +111,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
# libraries for Debian GNU/Linux desktop compiling
# requires the following packages:
# libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev
- LIBS = -lraylib -lglfw3 -lGLEW -lGL -lopenal -lm -pthread
- # on XWindow could require also below libraries, just uncomment
- #LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
+ LIBS = -lraylib -lglfw3 -lGLEW -lGL -lopenal -lm -lpthread -ldl
+ # on XWindow could require also below libraries:
+ LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
else
ifeq ($(PLATFORM_OS),OSX)
# libraries for OS X 10.9 desktop compiling