view scripts/test-make.sh @ 167:5b0e7f9b3d05

components: new -D additions from Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 19 Jun 2019 03:57:35 +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