view scripts/test-make.sh @ 178:42edfb87ae0f

targets/*.h: sync with Magnetite, getting newly added GPIO1_SPEAKER_CTRL and CONFIG_MCSI_MODEM #defines.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 04 Jan 2020 21:24:04 +0000
parents c8a4561ef581
children
line wrap: on
line source

#!/bin/sh

set -e

for i in *
do
	echo $i
	if [ $i != config ]
	then
		(cd $i; make)
	fi
done