Ai
7 Star 46 Fork 26

Gitee 极速下载/WebKit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/WebKit/webkit
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
Alexey Proskuryakov 提交于 2024-11-08 06:38 +08:00 . Remove installsrc support
ifneq ($(USE_WORKSPACE),NO)
include ../Makefile.shared
SCHEME = Everything up to WebKit
else
WEBINSPECTORUI_MODULE =
TO_LOWER = $(shell echo $(1) | tr [:upper:] [:lower:])
ifneq (,$(SDKROOT))
ifneq (,$(findstring macosx,$(call TO_LOWER,$(notdir $(SDKROOT)))))
WEBINSPECTORUI_MODULE = WebInspectorUI
endif
else
WEBINSPECTORUI_MODULE = WebInspectorUI
endif
ifeq (iosmac,$(SDK_VARIANT))
WEBINSPECTORUI_MODULE =
endif
MODULES = bmalloc WTF JavaScriptCore WebGPU ThirdParty WebCore $(WEBINSPECTORUI_MODULE) WebKitLegacy WebKit
define build_target_for_each_module
for dir in $(MODULES); do \
${MAKE} $@ -C $$dir PATH_FROM_ROOT=$(PATH_FROM_ROOT)/$${dir}; \
exit_status=$$?; \
[ $$exit_status -ne 0 ] && exit $$exit_status; \
done; true
endef
all:
@$(build_target_for_each_module)
debug d:
@$(build_target_for_each_module)
release r:
@$(build_target_for_each_module)
release+assert ra:
@$(build_target_for_each_module)
testing t:
@$(build_target_for_each_module)
analyze:
@$(build_target_for_each_module)
clean:
@$(build_target_for_each_module)
endif # USE_WORKSPACE
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/WebKit.git
git@gitee.com:mirrors/WebKit.git
mirrors
WebKit
WebKit
main

搜索帮助