Explorar el Código

Merge branch 'master' of https://github.com/raysan5/raylib

pull/5466/head
Ray hace 1 mes
padre
commit
9fe51a6144
Se han modificado 2 ficheros con 4 adiciones y 4 borrados
  1. +2
    -2
      examples/Makefile
  2. +2
    -2
      examples/Makefile.Web

+ 2
- 2
examples/Makefile Ver fichero

@ -213,9 +213,9 @@ ifeq ($(TARGET_PLATFORM),$(filter $(TARGET_PLATFORM),PLATFORM_WEB PLATFORM_WEB_R
ifeq ($(PLATFORM_OS),WINDOWS)
MAKE = mingw32-make
else
EMMAKE != type emmake
EMMAKE := $(shell command -v emmake)
ifneq (, $(EMMAKE))
MAKE = emmake make
MAKE = $(EMMAKE) make
else
MAKE = mingw32-make
endif

+ 2
- 2
examples/Makefile.Web Ver fichero

@ -211,9 +211,9 @@ ifeq ($(TARGET_PLATFORM),$(filter $(TARGET_PLATFORM),PLATFORM_WEB PLATFORM_WEB_R
ifeq ($(PLATFORM_OS),WINDOWS)
MAKE = mingw32-make
else
EMMAKE != type emmake
EMMAKE := $(shell command -v emmake)
ifneq (, $(EMMAKE))
MAKE = emmake make
MAKE = $(EMMAKE) make
else
MAKE = mingw32-make
endif

Cargando…
Cancelar
Guardar