aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorraysan5 <raysan5@gmail.com>2015-05-11 18:22:16 +0200
committerraysan5 <raysan5@gmail.com>2015-05-11 18:22:16 +0200
commite25f1227c0dfde7ba5c69237a4bbfe1277841135 (patch)
tree64a5beedab8191b5c867228042be4cbd3a589d7f /src/makefile
parent4e4b6bef21a3913e924ac83259cf00e18b17f780 (diff)
downloadraylib-e25f1227c0dfde7ba5c69237a4bbfe1277841135.tar.gz
raylib-e25f1227c0dfde7ba5c69237a4bbfe1277841135.zip
Updated stb headers
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/makefile b/src/makefile
index 1908b138..11bbea9d 100644
--- a/src/makefile
+++ b/src/makefile
@@ -93,7 +93,7 @@ else
endif
# define all object files required
-OBJS = core.o rlgl.o raymath.o shapes.o text.o textures.o models.o audio.o utils.o stb_vorbis.o camera.o gestures.o
+OBJS = core.o rlgl.o raymath.o shapes.o text.o textures.o models.o audio.o utils.o camera.o gestures.o
# typing 'make' will invoke the first target entry in the file,
# in this case, the 'default' target entry is raylib
@@ -144,10 +144,6 @@ audio.o: audio.c
utils.o: utils.c
$(CC) -c utils.c $(CFLAGS) $(INCLUDES) -D$(PLATFORM)
-# compile stb_vorbis library
-stb_vorbis.o: stb_vorbis.c
- $(CC) -c stb_vorbis.c $(CFLAGS) $(INCLUDES) -D$(PLATFORM)
-
# compile camera module
camera.o: camera.c
$(CC) -c camera.c $(CFLAGS) $(INCLUDES) -D$(PLATFORM)