summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 14 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 105fff05..c634adae 100644
--- a/Makefile
+++ b/Makefile
@@ -55,6 +55,13 @@ PLATFORM=$(COMPILE_PLATFORM)
endif
export PLATFORM
+ifeq ($(PLATFORM),mingw32)
+ MINGW=1
+endif
+ifeq ($(PLATFORM),mingw64)
+ MINGW=1
+endif
+
ifeq ($(COMPILE_ARCH),i86pc)
COMPILE_ARCH=x86
endif
@@ -150,7 +157,7 @@ USE_CURL=1
endif
ifndef USE_CURL_DLOPEN
- ifeq ($(PLATFORM),mingw32)
+ ifdef MINGW
USE_CURL_DLOPEN=0
else
USE_CURL_DLOPEN=1
@@ -493,7 +500,7 @@ else # ifeq darwin
# SETUP AND BUILD -- MINGW32
#############################################################################
-ifeq ($(PLATFORM),mingw32)
+ifdef MINGW
ifeq ($(CROSS_COMPILING),1)
# If CC is already set to something generic, we probably want to use
@@ -639,7 +646,7 @@ ifeq ($(PLATFORM),mingw32)
SDLDLL=SDL2.dll
endif
-else # ifeq mingw32
+else # ifdef MINGW
#############################################################################
# SETUP AND BUILD -- FREEBSD
@@ -890,7 +897,7 @@ else # ifeq sunos
endif #Linux
endif #darwin
-endif #mingw32
+endif #MINGW
endif #FreeBSD
endif #OpenBSD
endif #NetBSD
@@ -1536,7 +1543,7 @@ Q3OBJ = \
$(B)/client/con_log.o \
$(B)/client/sys_main.o
-ifeq ($(PLATFORM),mingw32)
+ifdef MINGW
Q3OBJ += \
$(B)/client/con_passive.o
else
@@ -1980,7 +1987,7 @@ ifeq ($(HAVE_VM_COMPILED),true)
endif
endif
-ifeq ($(PLATFORM),mingw32)
+ifdef MINGW
Q3OBJ += \
$(B)/client/win_resource.o \
$(B)/client/sys_win32.o
@@ -2119,7 +2126,7 @@ ifeq ($(HAVE_VM_COMPILED),true)
endif
endif
-ifeq ($(PLATFORM),mingw32)
+ifdef MINGW
Q3DOBJ += \
$(B)/ded/win_resource.o \
$(B)/ded/sys_win32.o \