📄 makefile
字号:
# Makefile - make rules for target/config/csb337
#
# Copyright 2004 Wind River Systems, Inc.
#
# modification history
# --------------------
# 01a,07sep04,pdr written.
#
# DESCRIPTION
# This file contains rules for building VxWorks for the CSB337
# fitted with an ARM920T core module.
#
# INCLUDES
# makeTarget
#*/
CPU = ARMARCH4
TOOL = diab # use DIAB build tools
# TOOL = gnu # use GNU compiler collection
EXTRA_DEFINE = -Wcomment -DCPU_920T \
-DARMMMU=ARMMMU_920T -DARMCACHE=ARMCACHE_920T -DARM_THUMB=FALSE
TGT_DIR = $(WIND_BASE)/target
include $(TGT_DIR)/h/make/defs.bsp
## Only redefine make definitions below this point, or your definitions will
## be overwritten by the makefile stubs above.
TARGET_DIR = csb337
VENDOR = Cogent
BOARD = csb337
RELEASE += bootrom.hex bootrom_uncmp.hex vxWorks_rom.hex
#ADDED_CFLAGS += -O0 -g -Wall # flag with GNU compiler
#ADDED_CFLAGS += -Wall # flag with GNU compiler
BOOTCONFIG = bootConfig.c
#
# 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 = 10000000 # ROM entry address
ROM_SIZE = 00800000 # number of bytes of ROM space
RAM_LOW_ADRS = 20001000 # RAM text/data address
RAM_HIGH_ADRS = 20600000 # RAM text/data address
VMA_START = 0x$(ROM_TEXT_ADRS)
## Only redefine make definitions above this point, or the expansion of
## makefile target dependencies may be incorrect.
include $(TGT_DIR)/h/make/rules.bsp
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -