irrlicht/examples/buildAllExamples.sh
bitplane 30b56d2ec5 Moved everything to /trunk
git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@643 dfc29bdd-3216-0410-991c-e03cc46cb475
2007-05-20 18:03:49 +00:00

10 lines
154 B
Bash
Executable File

#! /bin/sh
[ -z $1 ] || TARGET=$1
[ -z $TARGET ] && TARGET=all
for i in [01]* Demo; do
echo "Building $i";
cd $i;
make clean $TARGET;
cd ..;
done