📄 gnumakefile
字号:
# ******************************************************************************# ******************************************************************************# This makefile contains the rules for building the lef2oa program.## ******************************************************************************# Except as specified in the OpenAccess terms of use of Cadence or Silicon# Integration Initiative, this material may not be copied, modified,# re-published, uploaded, executed, or distributed in any way, in any medium,# in whole or in part, without prior written permission from Cadence.## Copyright 2003-2005 Cadence Design Systems, Inc.# All Rights Reserved.## $Author: ghijsen $# $Revision: 1.14 $# $Date: 2005/03/26 00:45:56 $# ******************************************************************************# ******************************************************************************ROOT = ..include $(ROOT)/build.variablesinclude $(ROOT)/local.rulesdefault : allinstall : check_lefdefOA_DIR := $(ROOT)/../oaPROJ_INCLUDES := -I$(PROD_DIR)/include/oa \ -I$(TOOL_INCLUDE_DIR)TOOL_NAME := oa2defOBJ_ROOT := libOBJDIR := $(OBJ_ROOT)/$(SYSNAME)/$(OPTMODE)dummy := $(shell [ -d $(OBJDIR) ] || $(MKDIR) $(OBJDIR))# ******************************************************************************# Define the program. Note: the TOOL_LDLIBS is defined in build.variables.# ******************************************************************************PROG_NAME := $(TOOL_NAME)PROG_RULE := $(PROG_NAME)_rulePROG_LDPATH := $(TOOL_LIB_DIR)PROG_LDLIBS := $(TOOL_LDLIBS)PROG_SRC := $(wildcard *.cpp)PROG_INST_BINDIR:= $(PROD_BIN_DIR)include $(CONFIG_ROOT)/program.rules# ******************************************************************************# Define the rules for installing the wrapper script.# ******************************************************************************INST_RULE := $(TOOL_NAME)_WRAPPERINST_DIR := $(PROD_DIR)/binINST_FILES := $(TOOL_NAME)include $(CONFIG_ROOT)/installwrappers.rulesinclude $(ROOT)/build.rules
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -