fpp/compiler/clean

17 lines
266 B
Bash
Executable File

#!/bin/sh -e
# Ensure the script can be run from any directory
wd=`dirname $0`
cd $wd
. scripts/utils.sh
./fpp-sbt clean
rm -rf bin native-fpp-* test-output.txt
clean
for file in `find . -mindepth 2 -name clean`
do
dir=`dirname $file`
(cd $dir; ./clean)
done