aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLelixSuper <emanuele98@openmailbox.org>2016-04-03 16:05:23 +0200
committerLelixSuper <emanuele98@openmailbox.org>2016-04-03 16:05:23 +0200
commitf2f4079411472e835263a7a59ed58dba380ecca6 (patch)
treedb349dbdc57a7321efed7c84357cdbf0ae984a5d /examples
parent565b1089bd6a4c97957c0c3df1a1ed2b829d2183 (diff)
downloadraylib-f2f4079411472e835263a7a59ed58dba380ecca6.tar.gz
raylib-f2f4079411472e835263a7a59ed58dba380ecca6.zip
Remove recipes of GLEW from Makefile (not used any more)
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/examples/Makefile b/examples/Makefile
index cb59654f..74335fe8 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -90,8 +90,6 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
# 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
@@ -113,8 +111,6 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
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
endif
@@ -125,14 +121,14 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),LINUX)
# libraries for Debian GNU/Linux desktop compiling
# requires the following packages:
- # libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev
+ # libglfw3-dev libopenal-dev libegl1-mesa-dev
LIBS = -lraylib -lglfw3 -lGL -lopenal -lm -pthread -ldl -lX11 \
-lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
else
ifeq ($(PLATFORM_OS),OSX)
# libraries for OS X 10.9 desktop compiling
# requires the following packages:
- # libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev
+ # libglfw3-dev libopenal-dev libegl1-mesa-dev
LIBS = -lraylib -lglfw -framework OpenGL -framework OpenAl -framework Cocoa
else
# libraries for Windows desktop compiling