irrnet/examples/linux_compile_all.sh

9 lines
164 B
Bash
Raw Normal View History

2018-03-11 05:07:10 +01:00
#! /bin/bash
[ -z $1 ] || TARGET=$1
[ -z $TARGET ] && TARGET=debug
2018-03-11 13:05:43 +01:00
for i in [0123456789]* ; do
2018-03-11 05:07:10 +01:00
echo "Building $i";
pushd $i && make clean $TARGET;
popd;
done