From 96b07d712d60ff902bd4b256379d3c6d5fa45274 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Fri, 9 Jul 2021 14:56:00 +0300 Subject: [PATCH] mingw makefiles: -lm is not needed. --- Quake/Makefile.w32 | 2 +- Quake/Makefile.w64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Quake/Makefile.w32 b/Quake/Makefile.w32 index 71cea828..badd9034 100644 --- a/Quake/Makefile.w32 +++ b/Quake/Makefile.w32 @@ -164,7 +164,7 @@ CFLAGS+= -DUSE_CODEC_UMX endif CFLAGS+= $(CODEC_INC) -COMMON_LIBS:= -lm -lopengl32 -lwinmm +COMMON_LIBS:= -lopengl32 -lwinmm LIBS := $(COMMON_LIBS) $(NET_LIBS) $(CODEC_LINK) $(CODECLIBS) diff --git a/Quake/Makefile.w64 b/Quake/Makefile.w64 index ab640fdc..875064eb 100644 --- a/Quake/Makefile.w64 +++ b/Quake/Makefile.w64 @@ -162,7 +162,7 @@ CFLAGS+= -DUSE_CODEC_UMX endif CFLAGS+= $(CODEC_INC) -COMMON_LIBS:= -lm -lopengl32 -lwinmm +COMMON_LIBS:= -lopengl32 -lwinmm LIBS := $(COMMON_LIBS) $(NET_LIBS) $(CODEC_LINK) $(CODECLIBS)