irrlicht/examples/buildAllExamples.sh
cutealien 7bf3b8a390 Add examples 30+ to the buildAllExamples script.
git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4798 dfc29bdd-3216-0410-991c-e03cc46cb475
2014-04-25 13:14:25 +00:00

9 lines
160 B
Bash
Executable File

#! /bin/bash
[ -z $1 ] || TARGET=$1
[ -z $TARGET ] && TARGET=all
for i in [0123]* Demo; do
echo "Building $i";
pushd $i && make clean $TARGET;
popd;
done