File: go-all-clean.sh

package info (click to toggle)
alliance 5.0-20120515-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 70,180 kB
  • sloc: ansic: 350,295; vhdl: 34,227; yacc: 27,122; sh: 12,416; cpp: 9,478; makefile: 7,055; lex: 3,684
file content (11 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

for B in addaccu16 adder4 amd2901 amd2901-vasy digi divcas4 \
    multi16b-reg multi4b multi8 multi8b pgcd sqrt32 sqrt8 \
    mipsR3000 hadamard
do
  if [ -d $B ]
  then echo "----- BENCH $B ----- "
       (cd $B && make clean)
  fi
done