diff options
author | Ori Bernstein <ori@eigenstate.org> | 2014-08-15 15:21:33 -0400 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2014-08-15 15:21:33 -0400 |
commit | 52af0fabaa1b7b36a1848f53b1abb4538dcebabc (patch) | |
tree | 05e0fe9334a637bcd9e6c2d61f0014545ffe629a /bench/Makefile | |
parent | 437f6d851e88446fba90495a3175f02e8d3d390c (diff) | |
download | mc-52af0fabaa1b7b36a1848f53b1abb4538dcebabc.tar.gz |
Add copious allocs to benchmarks.
Diffstat (limited to 'bench/Makefile')
-rw-r--r-- | bench/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bench/Makefile b/bench/Makefile index c94452b..25ce7ad 100644 --- a/bench/Makefile +++ b/bench/Makefile @@ -1,7 +1,7 @@ BIN=runner OBJ=runner.o -BENCHSRC=intsort.myr -BENCHUTIL= +BENCHSRC=intsort.myr \ + copious-allocs.myr \ include ../config.mk include ../mk/c.mk @@ -9,5 +9,5 @@ include ../mk/c.mk bench: runner $(BENCHSRC:.myr=) ./runner $(BENCHSRC:.myr=) -$(BENCHSRC:.myr=): $(BENCHSRC) $(BENCHUTIL) - ../myrbuild/myrbuild -b $@ $@.myr $(BENCHUTIL) +$(BENCHSRC:.myr=): $(BENCHSRC) + ../myrbuild/myrbuild -b $@ $@.myr |