1
0
This repository has been archived on 2025-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
Files
irrlicht-archive/examples/buildAllExamples.sh
2020-05-16 23:31:28 +02:00

9 lines
159 B
Bash
Executable File

#! /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