changeset 493:3a733cdfc576

Remove some useless things.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 05 Dec 2019 02:50:57 +0200
parents 185a6ea03fea
children b235d8f292c5
files Makefile.cross-mingw
diffstat 1 files changed, 2 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile.cross-mingw	Thu Dec 05 02:49:11 2019 +0200
+++ b/Makefile.cross-mingw	Thu Dec 05 02:50:57 2019 +0200
@@ -12,13 +12,9 @@
 
 ifeq ($(MINGW),64)
 BINTOOL_PREFIX ?= x86_64-w64-mingw32-
-MINGW_SYS_PATH ?= /usr/x86_64-w64-mingw32
-MINGW_LOCAL_PATH ?= /usr/local/x86_64-w64-mingw32
 OBJPATH ?= ./obj/win64/
 else
 BINTOOL_PREFIX ?= i686-w64-mingw32-
-MINGW_SYS_PATH ?= /usr/i686-w64-mingw32
-MINGW_LOCAL_PATH ?= /usr/local/i686-w64-mingw32
 OBJPATH ?= ./obj/win32/
 endif
 
@@ -29,13 +25,13 @@
 EXEEXT = .exe
 
 # Compiler flags and linker flags
-CFLAGS += -I$(MINGW_LOCAL_PATH)/include/ \
+CFLAGS += \
 	-D_NO_BOOL_TYPEDEF \
 	-DHAVE_STRING_H \
 	-DTH_BYTEORDER=TH_LITTLE_ENDIAN \
 	-mconsole
 
-LDFLAGS += -L$(MINGW_LOCAL_PATH)/lib/
+LDFLAGS +=
 
 
 ###