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

set -e

touch .config

apps="countertest deflatetest donothing ledblink
	sysinfo"

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