X-Git-Url: https://git.distorted.org.uk/~mdw/runlisp/blobdiff_plain/e29834b853038e8c90dcfe8377f02431cad42fc5..8996f767e047eefa8af4d01b1434b54f4c169b79:/bench/Makefile.am diff --git a/bench/Makefile.am b/bench/Makefile.am index cb5eef7..a7ee2c6 100644 --- a/bench/Makefile.am +++ b/bench/Makefile.am @@ -48,18 +48,22 @@ CLEANFILES += *.out *.bench ###-------------------------------------------------------------------------- ### Lisp systems using `runlisp'. -RUNLISP = $(top_builddir)/runlisp -I$(top_builddir)/ +RUNLISP = $(top_builddir)/runlisp \ + -c$(top_srcdir)/runlisp-base.conf \ + -oimage-dir=$(top_builddir) EXTRA_DIST += t.lisp RUNLISP_BENCHES = $(foreach l,$(LISPS), runlisp.$l.bench) BENCHES += $(RUNLISP_BENCHES) $(RUNLISP_BENCHES): runlisp.%.bench: timeit $(FORCE) - $(v_bench)./timeit $(RUNLISP) -L$* -- $(srcdir)/t.lisp a b c >runlisp.$*.out 2>$@ + $(v_bench)./timeit $(RUNLISP) -L$* -- \ + $(srcdir)/t.lisp a b c >runlisp.$*.out 2>$@ RUNLISP_NOIMAGE_BENCHES = $(foreach l,$(LISPS), runlisp-noimage.$l.bench) BENCHES += $(RUNLISP_NOIMAGE_BENCHES) $(RUNLISP_NOIMAGE_BENCHES): runlisp-noimage.%.bench: timeit $(FORCE) - $(v_bench)./timeit $(RUNLISP) -D -L$* -- $(srcdir)/t.lisp a b c >runlisp-noimage.$*.out 2>$@ + $(v_bench)./timeit $(RUNLISP) -D -L$* -- \ + $(srcdir)/t.lisp a b c >runlisp-noimage.$*.out 2>$@ ###-------------------------------------------------------------------------- ### Lisp systems using `cl-launch'.