Переглянути джерело

Merge pull request #80 from procedural/fix-compiling-on-linux

Fix raylib compiling on Linux
pull/83/head
Ray 9 роки тому
джерело
коміт
bf32081fa9
1 змінених файлів з 4 додано та 4 видалено
  1. +4
    -4
      src/makefile

+ 4
- 4
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

Завантаження…
Відмінити
Зберегти