aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorConstantine Tarasenkov <constantine@protonmail.com>2016-01-29 03:22:51 +0300
committerConstantine Tarasenkov <constantine@protonmail.com>2016-01-29 03:22:51 +0300
commit5d6475c93b5b23837220124d5dabd1c39ab9a80a (patch)
treeb48640a3842aaf84d6c3e2247e1ee2cc4ee5c944 /src
parentac475f46b9609235a9db4f3057271f609c39db7b (diff)
downloadraylib-5d6475c93b5b23837220124d5dabd1c39ab9a80a.tar.gz
raylib-5d6475c93b5b23837220124d5dabd1c39ab9a80a.zip
Fix raylib compiling on Linux
Diffstat (limited to 'src')
-rw-r--r--src/makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/makefile b/src/makefile
index 70fbca7c..1996907d 100644
--- a/src/makefile
+++ b/src/makefile
@@ -91,7 +91,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 camera.o gestures.o stb_vorbis.o
+OBJS = core.o rlgl.o glad.o shapes.o text.o textures.o models.o audio.o utils.o camera.o gestures.o stb_vorbis.o
# typing 'make' will invoke the first target entry in the file,
# in this case, the 'default' target entry is raylib
@@ -114,9 +114,9 @@ core.o: core.c
rlgl.o: rlgl.c
$(CC) -c rlgl.c $(CFLAGS) $(INCLUDES) -D$(PLATFORM) -D$(GRAPHICS)
-# compile raymath module
-raymath.o: raymath.c
- $(CC) -c raymath.c $(CFLAGS) $(INCLUDES)
+# compile glad module
+raymath.o: glad.c
+ $(CC) -c glad.c $(CFLAGS) $(INCLUDES)
# compile shapes module
shapes.o: shapes.c