Procházet zdrojové kódy

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

pull/1210/head
Stefan E. Mayer před 4 roky
odevzdal GitHub
rodič
revize
6582084e9b
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
4 změnil soubory, kde provedl 12 přidání a 0 odebrání
  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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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 Zobrazit soubor

@ -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:

Načítá se…
Zrušit
Uložit