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