view scripts/test-make.sh @ 31:ab57d3585e18

components/config_*: removing -DCTRACE to get rid of str2ind
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 16 Jul 2018 04:20: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