view scripts/test-make.sh @ 214:7751f14fa759

tpudrv12.h: sync with Tourmaline for CONFIG_TARGET_LEO_RFFE
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 31 Oct 2022 00:57:09 +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