diff options
| author | Ray <[email protected]> | 2017-03-26 14:43:21 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-26 14:43:21 +0200 |
| commit | 160408f26976868480c2e792e200b7aa9c545319 (patch) | |
| tree | b49e8cd52f033cd56d81835737c8ddad42c8b80b /games/drturtle/makefile | |
| parent | 5387b4543175bee9d195b24e250a0ef863a63555 (diff) | |
| parent | 72b90bff0fa0884ddeb8703b918147878c76eb8c (diff) | |
| download | raylib-160408f26976868480c2e792e200b7aa9c545319.tar.gz raylib-160408f26976868480c2e792e200b7aa9c545319.zip | |
Merge pull request #249 from RDR8/games-linux
Fixed some games. Replaced font.size with font.baseSize. Uncommented linux libs.
Diffstat (limited to 'games/drturtle/makefile')
| -rw-r--r-- | games/drturtle/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/drturtle/makefile b/games/drturtle/makefile index 52f95c77..ab7fd206 100644 --- a/games/drturtle/makefile +++ b/games/drturtle/makefile @@ -66,7 +66,7 @@ endif ifeq ($(PLATFORM),PLATFORM_RPI) CFLAGS = -O2 -Wall -std=gnu99 -fgnu89-inline else - CFLAGS = -O2 -Wall -std=c99 + CFLAGS = -O2 -Wall -std=c99 endif ifeq ($(PLATFORM),PLATFORM_WEB) CFLAGS = -O1 -Wall -std=c99 -s USE_GLFW=3 --preload-file resources -s ALLOW_MEMORY_GROWTH=1 --shell-file ../../templates/web_shell/shell.html @@ -114,7 +114,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) # libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev LIBS = -lraylib -lglfw3 -lGLEW -lGL -lopenal -lm -pthread -ldl # on XWindow could require also below libraries, just uncomment - #LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor + LIBS += -lX11 -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor else ifeq ($(PLATFORM_OS),OSX) # libraries for OS X 10.9 desktop compiling |
