浏览代码

Update Makefile.Web

pull/4436/head
Ray 5 个月前
父节点
当前提交
7ac36e20cd
共有 1 个文件被更改,包括 8 次插入3 次删除
  1. +8
    -3
      examples/Makefile.Web

+ 8
- 3
examples/Makefile.Web 查看文件

@ -139,7 +139,7 @@ endif
# Define default make program: MAKE # Define default make program: MAKE
#------------------------------------------------------------------------------------------------ #------------------------------------------------------------------------------------------------
MAKE ?= emmake make
MAKE ?= make
ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),WINDOWS) ifeq ($(PLATFORM_OS),WINDOWS)
@ -149,8 +149,13 @@ endif
ifeq ($(PLATFORM),PLATFORM_ANDROID) ifeq ($(PLATFORM),PLATFORM_ANDROID)
MAKE = mingw32-make MAKE = mingw32-make
endif endif
ifeq ($(PLATFORM),PLATFORM_WEB)
MAKE = emmake make
ifeq ($(TARGET_PLATFORM),PLATFORM_WEB)
EMMAKE != type emmake
ifneq (, $(EMMAKE))
MAKE = emmake make
else
MAKE = mingw32-make
endif
endif endif
# Define compiler flags: CFLAGS # Define compiler flags: CFLAGS

正在加载...
取消
保存