From ab2ead5cbe935f0ab0ec7b9e6ea32835d7e002bc Mon Sep 17 00:00:00 2001 From: MysterD Date: Mon, 21 Mar 2022 17:02:24 -0700 Subject: [PATCH] More makefile fixes for coop-compiler --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c9a06cc..48607d2a 100644 --- a/Makefile +++ b/Makefile @@ -594,7 +594,10 @@ ifeq ($(OSX_BUILD),1) AS := i686-w64-mingw32-as endif -ifeq ($(COMPILER),gcc) +ifeq ($(WINDOWS_AUTO_BUILDER),1) + CC := cc + CXX := g++ +else ifeq ($(COMPILER),gcc) CC := $(CROSS)gcc CXX := $(CROSS)g++ else ifeq ($(TARGET_WEB),1) # As in, web PC port