irrlicht/examples/buildAllExamples.sh

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