makefile

来自「HAL硬件抽象层源码」· 代码 · 共 42 行

TXT
42
字号
#
# Copyright (C) ARM Limited 1998. All rights reserved.
# uHAL demo makefile for the sidearm SA-1100 evaluation board.
#
include ../../environ.in

#------------------------------------------------------------
#  Locally defined things.
#------------------------------------------------------------
BOARD_NAME     = PID7T

#------------------------------------------------------------
# Use the uHAL rule sets
#------------------------------------------------------------
include $(UHAL_BASE)/Build/$(BOARD_NAME).b/board.in
include $(UHAL_BASE)/rules.in

#************************************************************
#  Make targets
#************************************************************
#
# On PID, we assume that we're running out of ROM at 0x04000000
# and that we don't care how we got into memory.  Practically this
# means being flashed via Embedded- or Multi- ICE.
#
all:	
	$(MAKE) TARGET=semihosted semihosted_all
	$(MAKE) TARGET=standalone TEXT=0x04000000 \
		DATA=0x00010000 TYPE='-bin' standalone_all

include ../common.make

#************************************************************
#  clean up the development tree.
#************************************************************
clean:	# clean up
	$(MAKE) TARGET=semihosted semihosted_clean
	$(MAKE) TARGET=standalone standalone_clean



⌨️ 快捷键说明

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