summaryrefslogtreecommitdiff
path: root/tests/build-stm32f446re-nucleo
blob: 8c9f8999e8be470b9e896574cb60c58200e21614 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

touch .config

apps="countertest deflatetest donothing ledblink
	sysinfo"

make arch=stm32f446re-nucleo ext/libopencm3/lib/libopencm3_stm32f4.a

for app in $apps; do
	find src -name '*.o' -delete
	rm -f build/system.elf
	make arch=stm32f446re-nucleo app=$app build/system.elf
done