view scripts/test-make.sh @ 96:85a26478b7de

src/g23m-gsm/sms/sms_for.c: malloc bogon removed
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 21 Jul 2018 01:30:53 +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