From 78546869030992e5076b20323d16f275f546e1ed Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Thu, 11 Oct 2018 21:54:04 -0400 Subject: [PATCH] Remove redefinition of CC Redefining CC isn't a standard thing to do in Makefiles. See more information about this over at: https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 1b41474..b098cde 100755 --- a/Makefile +++ b/Makefile @@ -34,8 +34,6 @@ OBJ := build/obj BOOTROMS_DIR ?= $(BIN)/BootROMs # Set tools - -CC := clang ifeq ($(PLATFORM),windows32) # To force use of the Unix version instead of the Windows version MKDIR := $(shell which mkdir)