浏览代码

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

pull/3452/head
Ray 1年前
父节点
当前提交
9127ee2ff9
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      examples/Makefile

+ 3
- 1
examples/Makefile 查看文件

@ -156,7 +156,7 @@ ifeq ($(PLATFORM),PLATFORM_ANDROID)
MAKE = mingw32-make
endif
ifeq ($(PLATFORM),PLATFORM_WEB)
MAKE = mingw32-make
MAKE = emmake make
endif
# Define compiler flags: CFLAGS
@ -533,6 +533,8 @@ others: $(OTHERS)
%: %.c
ifeq ($(PLATFORM),PLATFORM_ANDROID)
$(MAKE) -f Makefile.Android PROJECT_NAME=$@ PROJECT_SOURCE_FILES=$<
else ifeq ($(PLATFORM),PLATFORM_WEB)
$(MAKE) -f Makefile.Web $@
else
$(CC) -o $@$(EXT) $< $(CFLAGS) $(INCLUDE_PATHS) $(LDFLAGS) $(LDLIBS) -D$(PLATFORM)
endif

正在加载...
取消
保存