CppPlugins/testplugins/compile.sh

10 lines
127 B
Bash
Executable File

#!/bin/bash
old=$(pwd)
cd $(dirname $0)
folders=$(ls -F | grep "/")
for f in $folders; do
cd $f
make all
cd ..
done
cd $old