diff options
| author | Ray <raysan5@gmail.com> | 2016-01-29 06:52:41 -0800 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2016-01-29 06:52:41 -0800 |
| commit | bf32081fa92c254a08aa18872e590b2e8cbe7886 (patch) | |
| tree | f9d51cbffe248393fedfbd604064b9a986bb0f8d | |
| parent | ac475f46b9609235a9db4f3057271f609c39db7b (diff) | |
| parent | e6ad166ae34a35ee2a2f53359146ae58d1376dd6 (diff) | |
| download | raylib-bf32081fa92c254a08aa18872e590b2e8cbe7886.tar.gz raylib-bf32081fa92c254a08aa18872e590b2e8cbe7886.zip | |
Merge pull request #80 from procedural/fix-compiling-on-linux
Fix raylib compiling on Linux
| -rw-r--r-- | src/makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/makefile b/src/makefile index 70fbca7c..4f65c440 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 +glad.o: glad.c + $(CC) -c glad.c $(CFLAGS) $(INCLUDES) # compile shapes module shapes.o: shapes.c |
