?? makefile
字號:
#******************************************************************************
#
# Makefile - Rules for building the AES normal key example.
#
# Copyright (c) 2009 Luminary Micro, Inc. All rights reserved.
# Software License Agreement
#
# Luminary Micro, Inc. (LMI) is supplying this software for use solely and
# exclusively on LMI's microcontroller products.
#
# The software is owned by LMI and/or its suppliers, and is protected under
# applicable copyright laws. All rights are reserved. You may not combine
# this software with "viral" open-source software in order to form a larger
# program. Any use in violation of the foregoing restrictions may subject
# the user to criminal sanctions under applicable laws, as well as to civil
# liability for the breach of the terms and conditions of this license.
#
# THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
# OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
# LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
# CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
#
# This is part of revision 4201 of the EK-LM3S8962 Firmware Package.
#
#******************************************************************************
#
# Defines the part type that this project uses.
#
PART=LM3S8962
#
# The base directory for DriverLib.
#
ROOT=../../..
#
# Include the common make definitions.
#
include ${ROOT}/makedefs
#
# Where to find source files that do not live in this directory.
#
VPATH=../../../third_party/aes
VPATH+=../drivers
#
# Where to find header files that do not live in the source directory.
#
IPATH=.
IPATH+=..
IPATH+=../../..
#
# The default rule, which causes the AES normal key example to be built.
#
all: ${COMPILER}
all: ${COMPILER}/aes_set_key.axf
#
# The rule to clean out all the build products.
#
clean:
@rm -rf ${COMPILER} ${wildcard *~}
#
# The rule to create the target directory.
#
${COMPILER}:
@mkdir ${COMPILER}
#
# Rules for building the AES normal key example.
#
${COMPILER}/aes_set_key.axf: ${COMPILER}/aes.o
${COMPILER}/aes_set_key.axf: ${COMPILER}/aes_set_key.o
${COMPILER}/aes_set_key.axf: ${COMPILER}/rit128x96x4.o
${COMPILER}/aes_set_key.axf: ${COMPILER}/startup_${COMPILER}.o
${COMPILER}/aes_set_key.axf: ${ROOT}/driverlib/${COMPILER}/libdriver.a
ifeq (${COMPILER}, gcc)
${COMPILER}/aes_set_key.axf: aes_set_key.ld
endif
SCATTERgcc_aes_set_key=aes_set_key.ld
ifeq (${COMPILER}, sourcerygxx)
${COMPILER}/aes_set_key.axf: aes_set_key_sourcerygxx.ld
endif
SCATTERsourcerygxx_aes_set_key=lm3s8962-rom.ld -T aes_set_key_sourcerygxx.ld
ENTRY_aes_set_key=ResetISR
#
# Include the automatically generated dependency files.
#
ifneq (${MAKECMDGOALS},clean)
-include ${wildcard ${COMPILER}/*.d} __dummy__
endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -