view scripts/test-make.sh @ 154:9ae97f192d0b

targets/c1??.h: same CONFIG_TARGET_C1XX addition as in Magnetite
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 17 Mar 2019 06:57:58 +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