From fda91436b5749912548292842f7797d0dbb7bc55 Mon Sep 17 00:00:00 2001 From: Daniel Lemos Date: Mon, 21 Nov 2016 04:13:40 -0200 Subject: [games] Fix building the games on Linux by adding missing libs --- games/drturtle/makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'games/drturtle') diff --git a/games/drturtle/makefile b/games/drturtle/makefile index f9efd3e8..0a45e18a 100644 --- a/games/drturtle/makefile +++ b/games/drturtle/makefile @@ -112,8 +112,10 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) # libraries for Debian GNU/Linux desktop compiling # requires the following packages: # libglfw3-dev libopenal-dev libglew-dev libegl1-mesa-dev - LIBS = -lraylib -lglfw -lGLEW -lGL -lopenal - endif + 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 + else ifeq ($(PLATFORM_OS),OSX) # libraries for OS X 10.9 desktop compiling # requires the following packages: @@ -124,6 +126,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) # NOTE: GLFW3 and OpenAL Soft libraries should be installed LIBS = -lraylib -lglfw3 -lglew32 -lopengl32 -lopenal32 -lgdi32 endif + endif endif ifeq ($(PLATFORM),PLATFORM_RPI) # libraries for Raspberry Pi compiling -- cgit v1.2.3