view scripts/test-make.sh @ 126:cdbe920fd725

doc/Toolchain-setup-gcc: new prebuilt toolchain by Das Signal
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 07 Nov 2018 09:44:50 +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