summaryrefslogtreecommitdiff
path: root/advanced_opengl/build
diff options
context:
space:
mode:
Diffstat (limited to 'advanced_opengl/build')
-rwxr-xr-xadvanced_opengl/build9
1 files changed, 9 insertions, 0 deletions
diff --git a/advanced_opengl/build b/advanced_opengl/build
new file mode 100755
index 0000000..4829c7d
--- /dev/null
+++ b/advanced_opengl/build
@@ -0,0 +1,9 @@
+#!/bin/sh
+targets=$(ls)
+for target in $targets ; do
+ if [ $target != 'build.sh' ] ; then
+ cd $target
+ ./build.sh
+ cd ..
+ fi
+done