irrlicht-ogl-es/examples/buildAllExamples.sh

9 lines
159 B
Bash
Raw Permalink Normal View History

2011-11-18 23:40:19 -08:00
#! /bin/bash
[ -z $1 ] || TARGET=$1
[ -z $TARGET ] && TARGET=all
for i in [012]* Demo; do
echo "Building $i";
pushd $i && make clean $TARGET;
popd;
done