view scripts/test-make.sh @ 184:034c9c90398e

gtm900 build target renamed to gtm900mgc (sync with Magnetite)
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 15 Feb 2020 20:09:38 +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