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