view scripts/test-make.sh @ 108:af6b7fcf7823

README: GPRS status update
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 23 Jul 2018 21:24:06 +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