X-Git-Url: https://git.distorted.org.uk/~mdw/runlisp/blobdiff_plain/e29834b853038e8c90dcfe8377f02431cad42fc5..7b8ff279e7304e41b243459d78c3b6703bb8c3f5:/bench/Makefile.am diff --git a/bench/Makefile.am b/bench/Makefile.am index cb5eef7..1bf09ae 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.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'.