From 6582084e9be410d940acda2eba5e6589604e958d Mon Sep 17 00:00:00 2001 From: "Stefan E. Mayer" Date: Tue, 14 Apr 2020 18:50:53 +0100 Subject: [PATCH] Set the correct version of make on macos (#1202) --- projects/4coder/Makefile | 3 +++ templates/advance_game/Makefile | 3 +++ templates/simple_game/Makefile | 3 +++ templates/standard_game/Makefile | 3 +++ 4 files changed, 12 insertions(+) diff --git a/projects/4coder/Makefile b/projects/4coder/Makefile index 08d4da59..40a1e230 100644 --- a/projects/4coder/Makefile +++ b/projects/4coder/Makefile @@ -177,6 +177,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) MAKE = make endif + ifeq ($(PLATFORM_OS),OSX) + MAKE = make + endif endif # Define compiler flags: diff --git a/templates/advance_game/Makefile b/templates/advance_game/Makefile index 440258a4..cc3293ca 100644 --- a/templates/advance_game/Makefile +++ b/templates/advance_game/Makefile @@ -176,6 +176,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) MAKE = make endif + ifeq ($(PLATFORM_OS),OSX) + MAKE = make + endif endif # Define compiler flags: diff --git a/templates/simple_game/Makefile b/templates/simple_game/Makefile index a3fe7eb2..9614aeb5 100644 --- a/templates/simple_game/Makefile +++ b/templates/simple_game/Makefile @@ -176,6 +176,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) MAKE = make endif + ifeq ($(PLATFORM_OS),OSX) + MAKE = make + endif endif # Define compiler flags: diff --git a/templates/standard_game/Makefile b/templates/standard_game/Makefile index 1855ce8d..4a576e81 100644 --- a/templates/standard_game/Makefile +++ b/templates/standard_game/Makefile @@ -176,6 +176,9 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) MAKE = make endif + ifeq ($(PLATFORM_OS),OSX) + MAKE = make + endif endif # Define compiler flags: