bsp.mak
来自「osapi 2.0 操作系统抽象层 "系统抽象层"使得你可以实现一种对于RTO」· MAK 代码 · 共 45 行
MAK
45 行
################################################################################ File: bsp.mak## Purpose:# Compile Board Support Package routines for the Honeywell prototype board# running under VxWorks.## History:################################################################################# (BASE and PROLOG are defined on command line.)# Include build-specific configuration information.include $(PROLOG)include $(CONFIG_DEF)# Subsystem produced by this makefile.TARGET = bsp# Source and include file directories that are specific to subsystem.LOCALSRC = $(BASE)/arch/ppc/vxworks/bspLOCALINC =# Define compiler definitions that are specific to subsystem.LOCALCOPTS = -DBUILD_OS#==============================================================================# Object files required to build subsystem.OBJS=vxworks.o bsp_voltab.o#==============================================================================# Source files required to build subsystem; used to generate dependencies.SOURCES = InitBoard.c start.S vectors.S rtems.c#==============================================================================# Rules for building standard targets.include $(RULE_DEF)# eof
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?