home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / misc / benchmarks / collection / bench4 / bench.csh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1999-06-05  |  199 b   |  12 lines

  1. #!/bin/csh -f
  2. #
  3. # Run this file to have a comparison 
  4. #
  5. foreach b (*_bench.e)
  6.    set cmd="compile -clean $b make -no_split -boost -O3"
  7.    $cmd 
  8.    echo "$b : "
  9.    time a.out 
  10.    /bin/rm -f a.out
  11. end
  12.