summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--projects/4coder/Makefile3
-rw-r--r--templates/advance_game/Makefile3
-rw-r--r--templates/simple_game/Makefile3
-rw-r--r--templates/standard_game/Makefile3
4 files changed, 12 insertions, 0 deletions
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: