mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-16 22:35:41 +00:00
This was a seperate repository in CVS and so it missed the conversion.
benchmarks/
As above.
20 lines
306 B
Bash
Executable File
20 lines
306 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for dir in compress icfp2000 icfp2001 nuc
|
|
do
|
|
cd $dir
|
|
for grade in asm_fast.gc hlc.gc
|
|
do
|
|
echo "GRADE = $grade" > Mmakefile.grade
|
|
for optlevel in O5
|
|
do
|
|
echo "OPTLEVEL = $optlevel" > Mmakefile.optlevel
|
|
mmake realclean
|
|
mmake depend
|
|
mmake
|
|
mmake times
|
|
done
|
|
done
|
|
cd ..
|
|
done
|