From 0f5abc86acc5d9c699ea1ca82b69623843af1614 Mon Sep 17 00:00:00 2001 From: Rexy712 Date: Tue, 9 Jul 2019 12:54:01 -0700 Subject: [PATCH] Removed GL libraries from default windows --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index e3a36a4..5314f16 100644 --- a/makefile +++ b/makefile @@ -11,7 +11,7 @@ #You should have received a copy of the GNU General Public License #along with this program. If not, see . -#Copyright 2018 rexy712 +#Copyright 2018-2019 rexy712 SOURCE_DIRS:=src @@ -38,7 +38,7 @@ ifeq ($(OS),Windows_NT) rmdir=rd /s /q $(1) > NUL 2>&1 move=move /y $(subst /,\,$(1)) $(subst /,\,$(2)) > NUL 2>&1 MAIN_EXECUTABLE:=$(MAIN_EXECUTABLE).exe - LDLIBS:=-lglfw3 -lSOIL -lgl3w -lm -lopengl32 -lglu32 -lgdi32 -lkernel32 + LDLIBS:= else mkdir=mkdir -p $(1) rm=rm -f $(1)