build.rules
来自「openaccess与verilog互相转化时所用的源代码」· RULES 代码 · 共 25 行
RULES
25 行
# 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 + =
减小字号Ctrl + -
显示快捷键?