diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-10-08 23:15:26 -0700 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-10-08 23:15:26 -0700 |
commit | 21cc794eb05fbb9e0acb7eeeecdd417dba2e924e (patch) | |
tree | 2302e1884f54459f54a803599f656d623bf5e65a | |
parent | 369c06e41546d82b820ca7013385482ebe1a017d (diff) | |
download | mc-21cc794eb05fbb9e0acb7eeeecdd417dba2e924e.tar.gz |
Don't install the benchmark programs
-rw-r--r-- | bench/bld.sub | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bench/bld.sub b/bench/bld.sub index 925a392..ca8d242 100644 --- a/bench/bld.sub +++ b/bench/bld.sub @@ -1,45 +1,45 @@ -bin intsort = +bin intsort {noinst} = intsort.myr lib @/lib/std:std lib @/lib/sys:sys ;; -bin copious-allocs = +bin copious-allocs {noinst} = copious-allocs.myr lib @/lib/std:std lib @/lib/sys:sys ;; -bin sha1-compute = +bin sha1-compute {noinst} = sha1-compute.myr lib @/lib/std:std lib @/lib/sys:sys lib @/lib/cryptohash:cryptohash ;; -bin bigfactorial = +bin bigfactorial {noinst} = bigfactorial.myr lib @/lib/std:std lib @/lib/sys:sys ;; -bin mandelbrot = +bin mandelbrot {noinst} = mandelbrot.myr lib @/lib/std:std lib @/lib/sys:sys lib @/lib/bio:bio ;; -bin regex-match = +bin regex-match {noinst} = regex-match.myr lib @/lib/std:std lib @/lib/sys:sys lib @/lib/regex:regex ;; -bin many-memcpy = +bin many-memcpy {noinst} = many-memcpy.myr lib @/lib/std:std lib @/lib/sys:sys ;; # benchmark runner -bin runbench = +bin runbench {noinst} = runbench.myr lib @/lib/std:std lib @/lib/sys:sys |