view scripts/test-make.sh @ 182:5e1436690fe3

doc/Compiling: tangomdm target added, other minor updates
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 04 Jan 2020 22:59:51 +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