mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-01 04:11:14 +08:00
107 lines
3.7 KiB
Makefile
107 lines
3.7 KiB
Makefile
#******************************************************************************
|
|
#
|
|
# Makefile.driverlib-cm4f - Rules for building the driver library.
|
|
#
|
|
# Copyright (c) 2005-2011 Texas Instruments Incorporated. All rights reserved.
|
|
# Software License Agreement
|
|
#
|
|
# Texas Instruments (TI) is supplying this software for use solely and
|
|
# exclusively on TI's microcontroller products. The software is owned by
|
|
# TI and/or its suppliers, and is protected under applicable copyright
|
|
# laws. You may not combine this software with "viral" open-source
|
|
# software in order to form a larger program.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
|
|
# 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. TI SHALL NOT, UNDER ANY
|
|
# CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
|
|
# DAMAGES, FOR ANY REASON WHATSOEVER.
|
|
#
|
|
# This is part of revision 8049 of the Stellaris Peripheral Driver Library.
|
|
#
|
|
#******************************************************************************
|
|
|
|
#
|
|
# Defines the directory suffix that this project uses.
|
|
#
|
|
SUFFIX=-cm4f
|
|
|
|
#
|
|
# Set the processor variant.
|
|
#
|
|
VARIANT=cm4f
|
|
|
|
#
|
|
# The base directory for StellarisWare.
|
|
#
|
|
ROOT=..
|
|
|
|
#
|
|
# Include the common make definitions.
|
|
#
|
|
include ${ROOT}/makedefs
|
|
|
|
#
|
|
# Where to find header files that do not live in the source directory.
|
|
#
|
|
IPATH=..
|
|
|
|
#
|
|
# The default rule, which causes the driver library to be built.
|
|
#
|
|
all: ${COMPILER}-cm4f
|
|
all: ${COMPILER}-cm4f/libdriver-cm4f.a
|
|
|
|
#
|
|
# The rule to clean out all the build products.
|
|
#
|
|
clean:
|
|
@rm -rf ${COMPILER}-cm4f ${wildcard *~}
|
|
|
|
#
|
|
# The rule to create the target directory.
|
|
#
|
|
${COMPILER}-cm4f:
|
|
@mkdir -p ${COMPILER}-cm4f
|
|
|
|
#
|
|
# Rules for building the driver library.
|
|
#
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/adc.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/can.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/comp.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/cpu.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/eeprom.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/epi.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/ethernet.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/fan.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/flash.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/fpu.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/gpio.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/hibernate.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/i2c.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/i2s.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/interrupt.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/lpc.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/mpu.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/peci.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/pwm.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/qei.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/ssi.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/sysctl.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/sysexc.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/systick.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/timer.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/uart.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/udma.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/usb.o
|
|
${COMPILER}-cm4f/libdriver-cm4f.a: ${COMPILER}-cm4f/watchdog.o
|
|
|
|
#
|
|
# Include the automatically generated dependency files.
|
|
#
|
|
ifneq (${MAKECMDGOALS},clean)
|
|
-include ${wildcard ${COMPILER}-cm4f/*.d} __dummy__
|
|
endif
|