diff options
Diffstat (limited to 'advanced_opengl/build.sh')
-rwxr-xr-x | advanced_opengl/build.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/advanced_opengl/build.sh b/advanced_opengl/build.sh new file mode 100755 index 0000000..4829c7d --- /dev/null +++ b/advanced_opengl/build.sh @@ -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 |