rules.gnu
来自「vxworks源代码」· GNU 代码 · 共 28 行
GNU
28 行
# rules.gnu - rules for extracting objects from GNU libraries## modification history# --------------------# 01b,06nov01,sn define OBJ_PREFIX# 01a,15oct01,sn wrote## DESCRIPTION# Generic rules for extracting objects from GNU libraries.# Subdirectory Makefiles for specific libraries should# set GNULIBDIR and GNULIBRARY and include this file.# # Ask the compiler driver for the version (e.g. gcc-2.6) and# machine (e.g. powerpc-wrs-vxworksae). This info may# be used by subdirectory Makefiles to compute GNULIBDIR.CC_VERSION = $(shell $(CC) -dumpversion)CC_MACHINE = $(shell $(CC) -dumpmachine)MULTISUBDIR = $(CPU)$(TOOL)TOOL_LIB = $(GNULIBDIR)/$(MULTISUBDIR)/$(GNULIBRARY)OBJ_PREFIX = _x_gnu_include $(TGT_DIR)/src/tool/rules.tool
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?