📄 build.rules
字号:
# Beginning of rules to check that the make includes are present. These rules # provide the developer with information what to do. SETUP_OK := $(shell [ -r $(CONFIG_ROOT) ] && echo $(CONFIG_ROOT)).PHONY : install_checkpregen all install : install_checkifeq ($(strip $(SETUP_OK)), ) install_check : @echo "The include files for your makefile cannot be found in $(CONFIG_ROOT)." @echo "To resolve this problem, check out the build project" exit 1else install_check :endif# End of make includes check-include $(CONFIG_ROOT)/library.rules-include $(CONFIG_ROOT)/build.rules
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -