aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLelixSuper <emanuele98@openmailbox.org>2016-03-13 19:26:12 +0100
committerLelixSuper <emanuele98@openmailbox.org>2016-03-13 19:26:12 +0100
commit9e7a3b7017446c46e8ad128736a5979402cf09d7 (patch)
tree86098d3d7f0254712ed2fa9f64d43ab98fc54ce3
parent530e520727180d1ded6249ffd8cfac4814eae867 (diff)
downloadraylib-9e7a3b7017446c46e8ad128736a5979402cf09d7.tar.gz
raylib-9e7a3b7017446c46e8ad128736a5979402cf09d7.zip
Remove GLEW library and uncomment other GNU/Linux dependences
-rw-r--r--examples/Makefile5
-rw-r--r--templates/advance_game/Makefile5
-rw-r--r--templates/basic_game/Makefile5
-rw-r--r--templates/basic_test/Makefile5
-rw-r--r--templates/simple_game/Makefile5
-rw-r--r--templates/standard_game/Makefile5
6 files changed, 12 insertions, 18 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 13396ed9..e62488ae 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -148,9 +148,8 @@ 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 -ldl
- # on XWindow could require also below libraries, just uncomment
- #LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
+ 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
diff --git a/templates/advance_game/Makefile b/templates/advance_game/Makefile
index fddc2d92..d790fe26 100644
--- a/templates/advance_game/Makefile
+++ b/templates/advance_game/Makefile
@@ -151,9 +151,8 @@ 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 -ldl
- # on XWindow could require also below libraries, just uncomment
- #LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
+ 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
diff --git a/templates/basic_game/Makefile b/templates/basic_game/Makefile
index 6980f5ef..428c980a 100644
--- a/templates/basic_game/Makefile
+++ b/templates/basic_game/Makefile
@@ -151,9 +151,8 @@ 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 -ldl
- # on XWindow could require also below libraries, just uncomment
- #LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
+ 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
diff --git a/templates/basic_test/Makefile b/templates/basic_test/Makefile
index 1256e170..835484f6 100644
--- a/templates/basic_test/Makefile
+++ b/templates/basic_test/Makefile
@@ -150,9 +150,8 @@ 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 -ldl
- # on XWindow could require also below libraries, just uncomment
- #LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
+ 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
diff --git a/templates/simple_game/Makefile b/templates/simple_game/Makefile
index cd5c3ac8..707f858d 100644
--- a/templates/simple_game/Makefile
+++ b/templates/simple_game/Makefile
@@ -151,9 +151,8 @@ 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 -ldl
- # on XWindow could require also below libraries, just uncomment
- #LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
+ 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
diff --git a/templates/standard_game/Makefile b/templates/standard_game/Makefile
index 12a6efa1..6c67be42 100644
--- a/templates/standard_game/Makefile
+++ b/templates/standard_game/Makefile
@@ -151,9 +151,8 @@ 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 -ldl
- # on XWindow could require also below libraries, just uncomment
- #LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor
+ 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