From ec22577e5a144a181a81c212cdc901fcfa0a8988 Mon Sep 17 00:00:00 2001 From: Eugene F Date: Fri, 21 Apr 2017 16:20:40 -0400 Subject: [PATCH] basic_game - update makefile Removed glew from basic_game makefile as glew is not part of the raylib package (no glew in mingw). --- templates/basic_game/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/basic_game/Makefile b/templates/basic_game/Makefile index b9704b4b..6114b1ce 100644 --- a/templates/basic_game/Makefile +++ b/templates/basic_game/Makefile @@ -141,7 +141,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) else # libraries for Windows desktop compiling # NOTE: GLFW3 and OpenAL Soft libraries should be installed - LIBS = -lraylib -lglfw3 -lglew32 -lopengl32 -lopenal32 -lgdi32 + LIBS = -lraylib -lglfw3 -lopengl32 -lopenal32 -lgdi32 endif endif endif