summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStefan E. Mayer <[email protected]>2020-04-14 18:50:53 +0100
committerGitHub <[email protected]>2020-04-14 19:50:53 +0200
commit6582084e9be410d940acda2eba5e6589604e958d (patch)
treeae1e1da8e3bd4057cc9a236042f2fa8d15b88f95
parent3f1029c2810e414dd461158a4570c0664bf5e885 (diff)
downloadraylib-6582084e9be410d940acda2eba5e6589604e958d.tar.gz
raylib-6582084e9be410d940acda2eba5e6589604e958d.zip
Set the correct version of make on macos (#1202)
-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: