summaryrefslogtreecommitdiff
path: root/tools/checkwps/cleanall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkwps/cleanall.sh')
-rwxr-xr-xtools/checkwps/cleanall.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/checkwps/cleanall.sh b/tools/checkwps/cleanall.sh
index 860c3afae2..19a3aec6fb 100755
--- a/tools/checkwps/cleanall.sh
+++ b/tools/checkwps/cleanall.sh
@@ -1,9 +1,14 @@
1#!/bin/sh 1#!/bin/sh
2rootdir=`dirname $0` 2rootdir=`dirname $0`
3outdir=$rootdir/output
3 4
5make clean # make clean the build dir first
6rm -f autoconf.h
7rm -f Makefile
4cat $rootdir/targets.txt | ( 8cat $rootdir/targets.txt | (
5 while read target model 9 while read target model
6 do 10 do
7 rm -f checkwps.$model 11 rm -f $outdir/checkwps.$model # then delete any output/checkwps.*
12 rmdir $outdir > /dev/null 2>&1
8 done 13 done
9) 14)