summaryrefslogtreecommitdiff
path: root/advanced_opengl/build.sh
blob: 4829c7d46d324580f45eb90d9591f97520b244ea (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
targets=$(ls)
for target in $targets ; do
    if [ $target != 'build.sh' ] ; then
        cd $target
        ./build.sh
        cd ..
    fi
done