Moved pal testhal makefiles and configuration into folders
This commit is contained in:
parent
272ee7c0d3
commit
230c39fc14
|
@ -5,19 +5,19 @@
|
|||
all:
|
||||
@echo
|
||||
@echo === Building for TM4C123G LaunchPad ================================
|
||||
@make --no-print-directory -f Makefile-tm4c123g_launchpad all
|
||||
@make --no-print-directory -f ./make/tm4c123g_launchpad all
|
||||
@echo ====================================================================
|
||||
@echo
|
||||
@echo === Building for TM4C1294 Connected LaunchPad ======================
|
||||
@make --no-print-directory -f Makefile-tm4c1294_launchpad all
|
||||
@make --no-print-directory -f ./make/tm4c1294_launchpad all
|
||||
@echo ====================================================================
|
||||
@echo
|
||||
|
||||
clean:
|
||||
@echo
|
||||
-@make --no-print-directory -f Makefile-tm4c123g_launchpad clean
|
||||
-@make --no-print-directory -f ./make/tm4c123g_launchpad clean
|
||||
@echo
|
||||
-@make --no-print-directory -f Makefile-tm4c1294_launchpad clean
|
||||
-@make --no-print-directory -f ./make/tm4c1294_launchpad clean
|
||||
@echo
|
||||
|
||||
#
|
||||
|
|
|
@ -88,9 +88,9 @@ PROJECT = ch
|
|||
# Imported source files and paths
|
||||
CHIBIOS = ../../../../../ChibiOS-RT
|
||||
CHIBIOS_CONTRIB = $(CHIBIOS)/../ChibiOS-Contrib
|
||||
CONFDIR := ./cfg-tm4c123g_launchpad
|
||||
BUILDDIR := ./build-tm4c123g_launchpad
|
||||
DEPDIR := ./.dep-tm4c123g_launchpad
|
||||
CONFDIR := ./cfg/tm4c123g_launchpad
|
||||
BUILDDIR := ./build/tm4c123g_launchpad
|
||||
DEPDIR := ./.dep/tm4c123g_launchpad
|
||||
|
||||
# Licensing files.
|
||||
include $(CHIBIOS)/os/license/license.mk
|
|
@ -88,9 +88,9 @@ PROJECT = ch
|
|||
# Imported source files and paths
|
||||
CHIBIOS = ../../../../../ChibiOS-RT
|
||||
CHIBIOS_CONTRIB = $(CHIBIOS)/../ChibiOS-Contrib
|
||||
CONFDIR := ./cfg-tm4c1294_launchpad
|
||||
BUILDDIR := ./build-tm4c1294_launchpad
|
||||
DEPDIR := ./.dep-tm4c1294_launchpad
|
||||
CONFDIR := ./cfg/tm4c1294_launchpad
|
||||
BUILDDIR := ./build/tm4c1294_launchpad
|
||||
DEPDIR := ./.dep/tm4c1294_launchpad
|
||||
|
||||
# Licensing files.
|
||||
include $(CHIBIOS)/os/license/license.mk
|
Loading…
Reference in New Issue