📄 build.variables
字号:
# -*- mode: makefile -*-# -*- eval: font-lock-fontify-buffer -*-RELEASE = 01.0# Define CONFIG_ROOT. This is mainly needed to include files. CONFIG_ROOT = $(ROOT)/../build/make# Define TOOL_NAMETOOL_NAME = oaVerilogTOOL_NAME_ID = OpenAccess# Define version for OpenAccessMFG_VERSION = 2.2MFG_SUBVERSION = devMFG_LICVERSION = 2.2include $(CONFIG_ROOT)/build.variablesOBJ_ROOT = $(ROOT)/libOBJDIR = $(OBJ_ROOT)/$(SYSNAME)/$(OPTMODE)# Executable paths required to build Verilog parser.include $(ROOT)/local.rules# Standard defines and includes for OpenAccessDEFINES :=# PROJ_INCLUDES can be set in the makefileINCLUDE_DIRS = -I. $(PROJ_INCLUDES)CXX_INCLUDES = $(INCLUDE_DIRS)# Define MT. Libriares with MT names will be linked.LIBTYPE = ifeq ($(OPTMODE), dbgMT) LIBTYPE = MTendififeq ($(OPTMODE), optMT) LIBTYPE = MTendif# Include some configuration files that can be customized by the user.-include $(HOME)/.gnumakerc-include $(ROOT)/.gnumakerc# Don't include the package specific .gnumakerc, if ROOT is ., since# it will have been included by the previous commandifneq ($(ROOT), .) -include .gnumakercendifdummy := $(shell [ -d $(OBJDIR) ] || $(MKDIR) $(OBJDIR))
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -