makefile

来自「vxworks源码源码解读是学习vxworks的最佳途径」· 代码 · 共 42 行

TXT
42
字号
# Makefile - makefile for vw/src/arch/ppc/math## modification history# --------------------# 01d,18aug98,tpr  added PowerPC EC 603 support.# 01c,10dec96,tpr  reworked to support usSoftware library for PPC403 and PPC860.# 01b,10nov96,tpr  added mathHardLib.o andmathSoftLib.o# 01a,05nov96,tam  written.## DESCRIPTION# This file contains the makefile rules for building the vxWorks architecture# dependant library.## NOTE# The binaries without sources have to be added to the src-arch ressource file#*/TGT_DIR=$(WIND_BASE)/targetLIBNAME=lib$(CPU)$(TOOL)vx.aLIBDIRNAME=obj$(CPU)$(TOOL)vxSUBDIRS_PPC403		= usSoftwareLibSUBDIRS_PPC505		=	SUBDIRS_PPC603		= motorolaLibSUBDIRS_PPCEC603	= $(SUBDIRS_PPC403)SUBDIRS_PPC604		= $(SUBDIRS_PPC603)SUBDIRS_PPC860		= $(SUBDIRS_PPC403)OBJ_PPC403 		= mathSoftLib.oOBJ_PPC505 		= OBJ_PPC603 		= mathHardLib.o OBJ_PPCEC603   		= $(OBJ_PPC403)OBJ_PPC604 		= $(OBJ_PPC603)OBJ_PPC860   		= $(OBJ_PPC403)OBJS			= $(OBJ_$(CPU))SUBDIRS			= $(SUBDIRS_$(CPU))include $(TGT_DIR)/h/make/rules.library

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?