blob: 00afb52d619e2370bd9b688d6bc631896d25c078 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
default: benchmark
micro microbench microbenchmark:
../../bin/icon micro.icn >micro.out
../../bin/icon micsum.icn micro.out >micro.sum
cat micro.sum
benchmark:
$(MAKE) benchmark-icont
benchmark-icont:
$(MAKE) translate-icont compile-icont run-icont check-icont
translate-icont:
sh Trans-icont post options shuffle
compile-icont:
sh Comp-icont concord deal ipxref queens rsg
run-icont:
sh Execute-icont
rerun-icont:
sh ReRun-icont
check-icont:
grep elapsed *-t.out
Clean:
rm -f *.out *.sum *-t *.u?
|