📄 makefile
字号:
#############################################################################
#
# Makefile - makefile for HD860-R3
#
# Copyright(c) 2000 HaeDong Information & Communications Co.,Ltd
#
#############################################################################
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 = hd860r3
VENDOR = HAEDONG
BOARD = MPC860
RELEASE =
## requires a modified version of the ../all/usrConfig.c file.
## to attach user application module
USRCONFIG = $(TGT_DIR)\config\$(TARGET_DIR)\usrConfig.c
BOOTINIT = $(TGT_DIR)\config\$(TARGET_DIR)\bootinit.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_BASE_ADRS = FFE00000 # Physical start of ROM (also defined in config.h)
ROM_TEXT_ADRS = FFE00100 #*ROM entry address (also defined in config.h)
ROM_SIZE = 00200000 #* 2M bytes of ROM space (also defined in config.h)
LOCAL_MEM_LOCAL_ADRS = 00000000 # Physical start of RAM (also defined in config.h)
LOCAL_MEM_SIZE = 01000000 # 16 Megbyte DRAM (also defined in config.h)
RAM_LOW_ADRS = 00050000 #*RAM text/data address (also defined in config.h)
RAM_HIGH_ADRS = 00100000 #*RAM text/data address (also defined in config.h)
HEX_FLAGS = -a $(ROM_TEXT_ADRS)
MACH_EXTRA = sample_app.o
## Debug Information
ADDED_CFLAGS = -g
## 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 + -