2008-03-26 23:35:34 +00:00
|
|
|
#!/bin/sh
|
2009-02-02 00:09:35 +00:00
|
|
|
rootdir=`dirname $0`
|
2009-09-13 15:24:59 +00:00
|
|
|
outdir=$rootdir/output
|
2009-02-02 00:09:35 +00:00
|
|
|
|
2009-09-13 15:24:59 +00:00
|
|
|
make clean # make clean the build dir first
|
|
|
|
rm -f autoconf.h
|
|
|
|
rm -f Makefile
|
2009-12-29 21:49:44 +00:00
|
|
|
awk -f $rootdir/parse_configure.awk $rootdir/../configure | (
|
2008-03-26 23:35:34 +00:00
|
|
|
while read target model
|
|
|
|
do
|
2009-09-13 15:24:59 +00:00
|
|
|
rm -f $outdir/checkwps.$model # then delete any output/checkwps.*
|
|
|
|
rmdir $outdir > /dev/null 2>&1
|
2008-03-26 23:35:34 +00:00
|
|
|
done
|
|
|
|
)
|