view scripts/test-make.sh @ 172:a0f935d68377

targets: gtm900 added
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 19 Jun 2019 04:38:43 +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