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: