@@@ work in progress
[runlisp] / bench / Makefile.am
index cb5eef7..1bf09ae 100644 (file)
@@ -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'.