aboutsummaryrefslogtreecommitdiff
path: root/src
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 /src
parent565b1089bd6a4c97957c0c3df1a1ed2b829d2183 (diff)
downloadraylib-f2f4079411472e835263a7a59ed58dba380ecca6.tar.gz
raylib-f2f4079411472e835263a7a59ed58dba380ecca6.zip
Remove recipes of GLEW from Makefile (not used any more)
Diffstat (limited to 'src')
-rw-r--r--src/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index cab2ced0..8aeb00d7 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -84,8 +84,6 @@ else
# external libraries headers
# GLFW3
INCLUDES += -I../external/glfw3/include
-# GLEW
- INCLUDES += -I../external/glew/include
# OpenAL Soft
INCLUDES += -I../external/openal_soft/include
endif
@@ -143,7 +141,7 @@ models.o: models.c
# compile audio module
audio.o: audio.c
$(CC) -c audio.c $(CFLAGS) $(INCLUDES) -D$(PLATFORM)
-
+
# compile stb_vorbis library
stb_vorbis.o: stb_vorbis.c
$(CC) -c stb_vorbis.c -O1 $(INCLUDES) -D$(PLATFORM)