view scripts/test-make.sh @ 201:1a04de9c7974

gsm_ds_amd8_tango.template for tangomdm target
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 29 May 2020 05:25:48 +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