view scripts/test-make.sh @ 208:68184e15d92c

src/cs: sync with Magnetite (TI_PROFILER support)
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 16 Oct 2020 05:20:43 +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