view scripts/test-make.sh @ 33:b183afa47c72

RiViera/Nucleus typedef conflict resolved
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 16 Jul 2018 06:17:38 +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