⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 860最小系统的bsp
💻
字号:
# Makefile - makefile for bsp/config/ads860
#
# Copyright 1984-1996 Wind River Systems, Inc
#
# modification history
# --------------------
# 01i,04mar99,cn   merged from ads860 release view, removed macro BOOTINIT
#		   (SPR# 23153).
# 01h,22feb99,cn   added macro BOOTINIT (SPR# 9220).
# 01g,30nov98,cn   added macro USR_ENTRY (SPR# 9946).
# 01f,15may98,pcn  Removed objcopy from Makefile.
# 01e,12dec97,pcn  Added Objcopy in BSP build.
# 01d,06nov96,tpr  replaced RAM_LOW_ADRS from 00100000 to 00010000.
#		   + remove RELEASE.
# 01c,25jun96,tpr  removed vxWorks.st of the release rule.
# 01b,20jun96,tpr  added TGT_DIR and replaced $(WIND_BASE) by $(TGT_DIR).
# 01a,16apr96,tpr  written from bsp/ultra603/Makefile 01c version.
#
# DESCRIPTION
# This file contains rules for building VxWorks for the
# Motorola Application Development Support Board with a PowerPC 860 or 
# PowerPC 821 processor.
#
# INCLUDES
#     makeTarget
#*/

CPU              = PPC860
TOOL             = gnu

TGT_DIR = $(WIND_BASE)/target

include $(TGT_DIR)/h/make/defs.bsp
include $(TGT_DIR)/h/make/make.$(CPU)$(TOOL)
include $(TGT_DIR)/h/make/defs.$(WIND_HOST_TYPE)

## Only redefine make definitions below this point, or your definitions will
## be overwritten by the makefile stubs above.


TARGET_DIR	= bsc860
VENDOR		= Motorola
BOARD		= BSC860

USR_ENTRY	= usrInit

## The constants ROM_TEXT_ADRS, ROM_SIZE, and RAM_HIGH_ADRS are defined
## in config.h and Makefile. All definitions for these constants must be
## identical.

ROM_TEXT_ADRS    = 30000100 # ROM entry address
ROM_SIZE         = 00800000 # number of bytes of ROM space

BOOTROM_BASE_ADRS =  02800000  # base address of BOOTROM 
BOOTROM_TEXT_ADRS =	 02800100
BOOTROM_SIZE	  =	 00800000 	# 512k ROM space 


RAM_LOW_ADRS     = 00010000 # RAM text/data address
RAM_HIGH_ADRS    = 00700000 # RAM text/data address

HEX_FLAGS        = -a $(ROM_TEXT_ADRS)

MACH_EXTRA       =

## Only redefine make definitions above this point, or the expansion of 
## makefile target dependencies may be incorrect.

include $(TGT_DIR)/h/make/rules.bsp
include $(TGT_DIR)/h/make/rules.$(WIND_HOST_TYPE)

⌨️ 快捷键说明

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