浏览代码

Set the correct version of make on macos (#1202)

Stefan E. Mayer 5 年之前
父节点
当前提交
6582084e9b
共有 4 个文件被更改,包括 12 次插入0 次删除
  1. 3 0
      projects/4coder/Makefile
  2. 3 0
      templates/advance_game/Makefile
  3. 3 0
      templates/simple_game/Makefile
  4. 3 0
      templates/standard_game/Makefile

+ 3 - 0
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:

+ 3 - 0
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:

+ 3 - 0
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:

+ 3 - 0
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: