diff options
| author | Stefan E. Mayer <[email protected]> | 2020-04-14 18:50:53 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-14 19:50:53 +0200 |
| commit | 6582084e9be410d940acda2eba5e6589604e958d (patch) | |
| tree | ae1e1da8e3bd4057cc9a236042f2fa8d15b88f95 | |
| parent | 3f1029c2810e414dd461158a4570c0664bf5e885 (diff) | |
| download | raylib-6582084e9be410d940acda2eba5e6589604e958d.tar.gz raylib-6582084e9be410d940acda2eba5e6589604e958d.zip | |
Set the correct version of make on macos (#1202)
| -rw-r--r-- | projects/4coder/Makefile | 3 | ||||
| -rw-r--r-- | templates/advance_game/Makefile | 3 | ||||
| -rw-r--r-- | templates/simple_game/Makefile | 3 | ||||
| -rw-r--r-- | templates/standard_game/Makefile | 3 |
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: |
