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

📄 makefile

📁 ARM7开发板 AT91EB01 BSP源代码
💻
字号:
# Makefile - make rules for target/config/at91eb01
#
# Copyright 1999 ARM Limited
#
# modification history
# --------------------
# 01a,26aug99,jpd  created.
#
# DESCRIPTION
# This file contains rules for building VxWorks for the Atmel AT91EB01
# Evaluation Board in ARM state using the Tornado 2.0.x Early Access Release.
#
# INCLUDES
#     makeTarget
#*/

CPU		= ARMARCH4
TOOL		= gnu
EXTRA_DEFINE	= -Wcomment -DARMMMU=ARMMMU_NONE -DARMCACHE=ARMCACHE_NONE


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	= H6K
VENDOR		= Atmel
BOARD		= AT91EB01

RELEASE		= vxWorks vxWorks.st bootrom.bin 

#
# 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	= 20000000 # ROM entry address
ROM_SIZE	= 001FFF00 # number of bytes of ROM space

RAM_LOW_ADRS	= 02000000 # RAM text/data address
RAM_HIGH_ADRS	= 02100000 # RAM text/data address

EXTRA_MODULES   = 
LIB_EXTRA       = 


# binary version of VxWorks ROM images, suitable for programming
# into Flash using tools provided by Atmel. If other ROM images need to
# be put into Flash, add similar rules here.

bootrom.bin: bootrom
	- @ $(RM) $@
	$(EXTRACT_BIN) < bootrom > $@

bootrom_res.bin: bootrom_res
	- @ $(RM) $@
	$(EXTRACT_BIN) < bootrom_res > $@

vxWorks_rom.bin: vxWorks_rom
	- @ $(RM) $@
	$(EXTRACT_BIN) < vxWorks_rom > $@

vxWorks.st_rom.bin: vxWorks.st_rom
	- @ $(RM) $@
	$(EXTRACT_BIN) < vxWorks.st_rom > $@

vxWorks.res_rom.bin: vxWorks.res_rom
	- @ $(RM) $@
	$(EXTRACT_BIN) < vxWorks.res_rom > $@

vxWorks.res_rom_nosym.bin: vxWorks.res_rom_nosym
	- @ $(RM) $@
	$(EXTRACT_BIN) < vxWorks.res_rom_nosym > $@


## 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 + -