aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/TIVA/multi/PAL/Makefile
blob: 9efbf47c2d85233b66481f836866e69d5c355739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
##############################################################################
# Multi-project makefile rules
#

all:
	@echo
	@echo === Building for TM4C123G LaunchPad ================================
	@make --no-print-directory -f Makefile-tm4c123g_launchpad all
	@echo ====================================================================
	@echo
	@echo === Building for TM4C1294 Connected LaunchPad ======================
	@make --no-print-directory -f Makefile-tm4c1294_launchpad all
	@echo ====================================================================
	@echo

clean:
	@echo
	-@make --no-print-directory -f Makefile-tm4c123g_launchpad clean
	@echo
	-@make --no-print-directory -f Makefile-tm4c1294_launchpad clean
	@echo

#
##############################################################################