aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/examples/buildAllExamples.sh
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-01-13 19:47:58 +1000
committerDavid Walter Seikel2014-01-13 19:47:58 +1000
commitf9158592e1478b2013afc7041d9ed041cf2d2f4a (patch)
treeb16e389d7988700e21b4c9741044cefa536dcbae /libraries/irrlicht-1.8/examples/buildAllExamples.sh
parentLibraries readme updated with change markers and more of the Irrlicht changes. (diff)
downloadSledjHamr-f9158592e1478b2013afc7041d9ed041cf2d2f4a.zip
SledjHamr-f9158592e1478b2013afc7041d9ed041cf2d2f4a.tar.gz
SledjHamr-f9158592e1478b2013afc7041d9ed041cf2d2f4a.tar.bz2
SledjHamr-f9158592e1478b2013afc7041d9ed041cf2d2f4a.tar.xz
Update Irrlicht to 1.8.1. Include actual change markers this time. lol
Diffstat (limited to 'libraries/irrlicht-1.8/examples/buildAllExamples.sh')
-rwxr-xr-xlibraries/irrlicht-1.8/examples/buildAllExamples.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/libraries/irrlicht-1.8/examples/buildAllExamples.sh b/libraries/irrlicht-1.8/examples/buildAllExamples.sh
deleted file mode 100755
index 272a329..0000000
--- a/libraries/irrlicht-1.8/examples/buildAllExamples.sh
+++ /dev/null
@@ -1,8 +0,0 @@
1#! /bin/bash
2[ -z $1 ] || TARGET=$1
3[ -z $TARGET ] && TARGET=all
4for i in [012]* Demo; do
5 echo "Building $i";
6 pushd $i && make clean $TARGET;
7 popd;
8done