Merge pull request #211 from dubek/racket-fix-argv
[jackhill/mal.git] / Makefile
CommitLineData
5b207de7
JM
1# Usage/help
2all help:
3 @echo
4 @echo 'USAGE:'
5 @echo
6 @echo 'Rules/Targets:'
7 @echo
8 @echo 'make "IMPL" # build all steps of IMPL'
9 @echo 'make "IMPL^STEP" # build STEP of IMPL'
10 @echo
11 @echo 'make "test" # test all implementations'
12 @echo 'make "test^IMPL" # test all steps of IMPL'
13 @echo 'make "test^STEP" # test STEP for all implementations'
14 @echo 'make "test^IMPL^STEP" # test STEP of IMPL'
15 @echo
16 @echo 'make "perf" # run microbenchmarks for all implementations'
17 @echo 'make "perf^IMPL" # run microbenchmarks for IMPL'
18 @echo
19 @echo 'make "repl^IMPL" # run stepA of IMPL'
20 @echo 'make "repl^IMPL^STEP" # test STEP of IMPL'
21 @echo
22 @echo 'make "clean" # run 'make clean' for all implementations'
23 @echo 'make "clean^IMPL" # run 'make clean' for IMPL'
24 @echo
25 @echo 'make "stats" # run 'make stats' for all implementations'
26 @echo 'make "stats-lisp" # run 'make stats-lisp' for all implementations'
27 @echo 'make "stats^IMPL" # run 'make stats' for IMPL'
28 @echo 'make "stats-lisp^IMPL" # run 'make stats-lisp' for IMPL'
29 @echo
30 @echo 'Options/Settings:'
31 @echo
32 @echo 'make MAL_IMPL=IMPL "test^mal..." # use IMPL for self-host tests'
33 @echo 'make REGRESS=1 "test..." # test with previous step tests too'
34 @echo 'make DOCKERIZE=1 ... # to dockerize above rules/targets'
35 @echo
36 @echo 'Other:'
37 @echo
38 @echo 'make "docker-build^IMPL" # build docker image for IMPL'
39 @echo
40
31690700
JM
41#
42# Command line settings
43#
44
45MAL_IMPL = js
46
a05f7822 47PYTHON = python
47699629 48USE_MATLAB =
32d0a1cf
JM
49# python, js, cpp, or neko are currently supported
50HAXE_MODE = neko
a05f7822 51
337c8031
JM
52# Extra options to pass to runtest.py
53TEST_OPTS =
54
17180e85
JM
55# Test with previous test files not just the test files for the
56# current step. Step 0 and 1 tests are special and not included in
57# later steps.
5b207de7 58REGRESS =
17180e85 59
a1eb30fc 60DEFERRABLE=1
46e25689
JM
61OPTIONAL=1
62
337c8031
JM
63# Extra implementation specific options to pass to runtest.py
64mal_TEST_OPTS = --start-timeout 60 --test-timeout 120
f2b067cb 65miniMAL_TEST_OPTS = --start-timeout 60 --test-timeout 120
08e44c41 66plpgsql_TEST_OPTS = --start-timeout 60 --test-timeout 180
f2b067cb
JM
67
68DOCKERIZE=
337c8031 69
5b207de7
JM
70# Run target/rule within docker image for the implementation
71DOCKERIZE =
a05f7822 72
31690700
JM
73#
74# Settings
75#
76
adc03a1a 77IMPLS = ada awk bash c d clojure coffee cpp crystal cs erlang elisp \
0067158f
JM
78 elixir es6 factor forth fsharp go groovy guile haskell haxe \
79 io java julia js kotlin lua make mal ocaml matlab miniMAL \
adc5b4fb 80 nim objc objpascal perl php plpgsql ps python r racket \
36e91db4 81 rpython ruby rust scala swift swift3 tcl vb vhdl vimscript
31690700
JM
82
83step0 = step0_repl
84step1 = step1_read_print
85step2 = step2_eval
86step3 = step3_env
87step4 = step4_if_fn_do
88step5 = step5_tco
89step6 = step6_file
90step7 = step7_quote
91step8 = step8_macros
01c97316 92step9 = step9_try
90f618cb 93stepA = stepA_mal
31690700 94
17180e85
JM
95regress_step0 = step0
96regress_step1 = step1
97regress_step2 = step2
98regress_step3 = $(regress_step2) step3
99regress_step4 = $(regress_step3) step4
100regress_step5 = $(regress_step4) step5
101regress_step6 = $(regress_step5) step6
102regress_step7 = $(regress_step6) step7
103regress_step8 = $(regress_step7) step8
104regress_step9 = $(regress_step8) step9
105regress_stepA = $(regress_step9) stepA
106
dca6b585
JM
107test_EXCLUDES += test^bash^step5 # never completes at 10,000
108test_EXCLUDES += test^make^step5 # no TCO capability (iteration or recursion)
109test_EXCLUDES += test^mal^step5 # host impl dependent
110test_EXCLUDES += test^matlab^step5 # never completes at 10,000
5340418b 111test_EXCLUDES += test^plpgsql^step5 # too slow for 10,000
dca6b585
JM
112
113perf_EXCLUDES = mal # TODO: fix this
31690700 114
bcfd8b70 115dist_EXCLUDES += mal
5245b079 116# TODO: still need to implement dist
bcfd8b70 117dist_EXCLUDES += guile io julia matlab swift
31690700
JM
118
119#
120# Utility functions
121#
122
47699629
JM
123MATLAB = matlab -nodisplay -nosplash -nodesktop -nojvm -r
124OCTAVE = octave --no-gui -q --traditional --eval
125matlab_args = $(subst $(SPACE),$(COMMA),$(foreach x,$(strip $(1)),'$(x)'))
126matlab_cmd = $(if $(strip $(USE_MATLAB)),$(MATLAB),$(OCTAVE))
127
32d0a1cf
JM
128haxe_STEP_TO_PROG_neko = haxe/$($(1)).n
129haxe_STEP_TO_PROG_python = haxe/$($(1)).py
130haxe_STEP_TO_PROG_cpp = haxe/cpp/$($(1))
131haxe_STEP_TO_PROG_js = haxe/$($(1)).js
132
133haxe_RUNSTEP_neko = neko ../$(2) $(3)
134haxe_RUNSTEP_python = python3 ../$(2) $(3)
135haxe_RUNSTEP_cpp = ../$(2) $(3)
136haxe_RUNSTEP_js = node ../$(2) $(3)
137
a1eb30fc 138opt_DEFERRABLE = $(if $(strip $(DEFERRABLE)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(DEFERRABLE)),--deferrable,--no-deferrable),--no-deferrable)
46e25689
JM
139opt_OPTIONAL = $(if $(strip $(OPTIONAL)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(OPTIONAL)),--optional,--no-optional),--no-optional)
140
17180e85
JM
141# Return list of test files for a given step. If REGRESS is set then
142# test files will include step 2 tests through tests for the step
143# being tested.
144STEP_TEST_FILES = $(strip $(wildcard \
145 $(foreach s,$(if $(strip $(REGRESS)),$(regress_$(2)),$(2)),\
146 $(1)/tests/$($(s)).mal tests/$($(s)).mal)))
31690700 147
17180e85 148# Map of step (e.g. "step8") to executable file for that step
99be41df 149ada_STEP_TO_PROG = ada/$($(1))
3b7ef8c7 150awk_STEP_TO_PROG = awk/$($(1)).awk
db4c329a
JM
151bash_STEP_TO_PROG = bash/$($(1)).sh
152c_STEP_TO_PROG = c/$($(1))
f82cb965 153d_STEP_TO_PROG = d/$($(1))
31690700 154clojure_STEP_TO_PROG = clojure/src/$($(1)).clj
891c3f3b 155coffee_STEP_TO_PROG = coffee/$($(1)).coffee
9ddaa0b9 156cpp_STEP_TO_PROG = cpp/$($(1))
86fe6314 157crystal_STEP_TO_PROG = crystal/$($(1))
db4c329a 158cs_STEP_TO_PROG = cs/$($(1)).exe
ae28e856 159elisp_STEP_TO_PROG = elisp/$($(1)).el
51c2c1fe 160elixir_STEP_TO_PROG = elixir/lib/mix/tasks/$($(1)).ex
2cc3804b 161erlang_STEP_TO_PROG = erlang/$($(1))
4eb71990 162es6_STEP_TO_PROG = es6/build/$($(1)).js
199b1ce7 163factor_STEP_TO_PROG = factor/$($(1))/$($(1)).factor
59038a10 164forth_STEP_TO_PROG = forth/$($(1)).fs
1c358979 165fsharp_STEP_TO_PROG = fsharp/$($(1)).exe
69b4abd6 166go_STEP_TO_PROG = go/$($(1))
a9cd6543 167groovy_STEP_TO_PROG = groovy/$($(1)).groovy
36e287b5 168java_STEP_TO_PROG = java/target/classes/mal/$($(1)).class
b76aa73b 169haskell_STEP_TO_PROG = haskell/$($(1))
32d0a1cf 170haxe_STEP_TO_PROG = $(haxe_STEP_TO_PROG_$(HAXE_MODE))
7511317b 171io_STEP_TO_PROG = io/$($(1)).io
a23e0cdb 172julia_STEP_TO_PROG = julia/$($(1)).jl
db4c329a 173js_STEP_TO_PROG = js/$($(1)).js
53c2ea70 174kotlin_STEP_TO_PROG = kotlin/$($(1)).jar
9d42904e 175lua_STEP_TO_PROG = lua/$($(1)).lua
db4c329a
JM
176make_STEP_TO_PROG = make/$($(1)).mk
177mal_STEP_TO_PROG = mal/$($(1)).mal
59d10e1b 178ocaml_STEP_TO_PROG = ocaml/$($(1))
9a54ea18 179matlab_STEP_TO_PROG = matlab/$($(1)).m
c1fe72ae 180miniMAL_STEP_TO_PROG = miniMAL/$($(1)).json
dbac60df 181nim_STEP_TO_PROG = nim/$($(1))
2faae94c 182objc_STEP_TO_PROG = objc/$($(1))
0067158f 183objpascal_STEP_TO_PROG = objpascal/$($(1))
b5dedee0 184perl_STEP_TO_PROG = perl/$($(1)).pl
db4c329a 185php_STEP_TO_PROG = php/$($(1)).php
adc5b4fb 186plpgsql_STEP_TO_PROG = plpgsql/$($(1)).sql
db4c329a
JM
187ps_STEP_TO_PROG = ps/$($(1)).ps
188python_STEP_TO_PROG = python/$($(1)).py
4d1456b9 189r_STEP_TO_PROG = r/$($(1)).r
f5223195 190racket_STEP_TO_PROG = racket/$($(1)).rkt
80320efc 191rpython_STEP_TO_PROG = rpython/$($(1))
db4c329a 192ruby_STEP_TO_PROG = ruby/$($(1)).rb
434516e0 193rust_STEP_TO_PROG = rust/target/release/$($(1))
821930db 194scala_STEP_TO_PROG = scala/$($(1)).scala
2539e6af 195swift_STEP_TO_PROG = swift/$($(1))
0eace3df 196swift3_STEP_TO_PROG = swift3/$($(1))
54d9903c 197tcl_STEP_TO_PROG = tcl/$($(1)).tcl
ee7cd585 198vb_STEP_TO_PROG = vb/$($(1)).exe
36e91db4 199vhdl_STEP_TO_PROG = vhdl/$($(1))
50a964ce 200vimscript_STEP_TO_PROG = vimscript/$($(1)).vim
5eb1f5cb 201guile_STEP_TO_PROG = guile/$($(1)).scm
db4c329a 202
db4c329a 203
c4033aab
JM
204# Needed some argument munging
205COMMA = ,
206noop =
207SPACE = $(noop) $(noop)
d1596ac2 208export FACTOR_ROOTS := .
db4c329a 209
17180e85
JM
210# Macro for running a step:
211# $(1): step (e.g. "stepA")
212# $(2): program for step (e.g. result of *_STEP_TO_PROG
213# $(3): program arguments
99be41df 214ada_RUNSTEP = ../$(2) $(3)
3b7ef8c7 215awk_RUNSTEP = awk -O -f ../$(2) $(3)
db4c329a
JM
216bash_RUNSTEP = bash ../$(2) $(3)
217c_RUNSTEP = ../$(2) $(3)
f82cb965 218d_RUNSTEP = ../$(2) $(3)
db4c329a 219clojure_RUNSTEP = lein with-profile +$(1) trampoline run $(3)
891c3f3b 220coffee_RUNSTEP = coffee ../$(2) $(3)
9ddaa0b9 221cpp_RUNSTEP = ../$(2) $(3)
86fe6314 222crystal_RUNSTEP = ../$(2) $(3)
db4c329a 223cs_RUNSTEP = mono ../$(2) --raw $(3)
ae28e856 224elisp_RUNSTEP = emacs -Q --batch --load ../$(2) $(3)
df2ca97b 225elixir_RUNSTEP = mix $(notdir $(basename $(2))) $(3)
2cc3804b 226erlang_RUNSTEP = ../$(2) $(3)
4eb71990 227es6_RUNSTEP = node ../$(2) $(3)
389c9b8a 228factor_RUNSTEP = factor ../$(2) $(3)
59038a10 229forth_RUNSTEP = gforth ../$(2) $(3)
1c358979 230fsharp_RUNSTEP = mono ../$(2) --raw $(3)
69b4abd6 231go_RUNSTEP = ../$(2) $(3)
a9cd6543 232groovy_RUNSTEP = groovy ../$(2) $(3)
5245b079
JM
233# needs TERM=dumb to work with readline
234guile_RUNSTEP = guile --no-auto-compile -L ../guile ../$(2) $(3)
b76aa73b 235haskell_RUNSTEP = ../$(2) $(3)
6c4c14bd 236haxe_RUNSTEP = python3 ../$(2) $(3)
32d0a1cf 237haxe_RUNSTEP = $(haxe_RUNSTEP_$(HAXE_MODE))
7511317b 238io_RUNSTEP = io ../$(2) $(3)
798206ac 239java_RUNSTEP = mvn -quiet exec:java -Dexec.mainClass="mal.$($(1))" $(if $(3), -Dexec.args="$(3)",)
a23e0cdb 240julia_RUNSTEP = ../$(2) $(3)
db4c329a 241js_RUNSTEP = node ../$(2) $(3)
53c2ea70 242kotlin_RUNSTEP = java -jar ../$(2) $(3)
798206ac 243lua_RUNSTEP = ../$(2) $(3)
db4c329a 244make_RUNSTEP = make -f ../$(2) $(3)
922d4c3b 245mal_RUNSTEP = $(call $(MAL_IMPL)_RUNSTEP,stepA,$(call $(MAL_IMPL)_STEP_TO_PROG,stepA),../$(2),") #"
59d10e1b 246ocaml_RUNSTEP = ../$(2) $(3)
47699629 247matlab_RUNSTEP = $(matlab_cmd) "$($(1))($(call matlab_args,$(3)));quit;"
c1fe72ae 248miniMAL_RUNSTEP = miniMAL ../$(2) $(3)
dbac60df 249nim_RUNSTEP = ../$(2) $(3)
2faae94c 250objc_RUNSTEP = ../$(2) $(3)
0067158f 251objpascal_RUNSTEP = ../$(2) $(3)
82acd3de 252perl_RUNSTEP = perl ../$(2) $(3)
db4c329a 253php_RUNSTEP = php ../$(2) $(3)
adc5b4fb 254plpgsql_RUNSTEP = ./wrap.sh ../$(2) $(3)
406761e7 255ps_RUNSTEP = gs -q -I./ -dNODISPLAY -- ../$(2) $(3)
db4c329a 256python_RUNSTEP = $(PYTHON) ../$(2) $(3)
4d1456b9 257r_RUNSTEP = Rscript ../$(2) $(3)
f5223195 258racket_RUNSTEP = ../$(2) $(3)
80320efc 259rpython_RUNSTEP = ../$(2) $(3)
db4c329a 260ruby_RUNSTEP = ruby ../$(2) $(3)
abdd56eb 261rust_RUNSTEP = ../$(2) $(3)
821930db 262scala_RUNSTEP = sbt 'run-main $($(1))$(if $(3), $(3),)'
2539e6af 263swift_RUNSTEP = ../$(2) $(3)
0eace3df 264swift3_RUNSTEP = ../$(2) $(3)
576ef370 265tcl_RUNSTEP = tclsh ../$(2) --raw $(3)
ee7cd585 266vb_RUNSTEP = mono ../$(2) --raw $(3)
36e91db4 267vhdl_RUNSTEP = ./run_vhdl.sh ../$(2) $(3)
50a964ce 268vimscript_RUNSTEP = ./run_vimscript.sh ../$(2) $(3)
db4c329a 269
31690700 270
4959b19d
JM
271# DOCKERIZE utility functions
272lc = $(subst A,a,$(subst B,b,$(subst C,c,$(subst D,d,$(subst E,e,$(subst F,f,$(subst G,g,$(subst H,h,$(subst I,i,$(subst J,j,$(subst K,k,$(subst L,l,$(subst M,m,$(subst N,n,$(subst O,o,$(subst P,p,$(subst Q,q,$(subst R,r,$(subst S,s,$(subst T,t,$(subst U,u,$(subst V,v,$(subst W,w,$(subst X,x,$(subst Y,y,$(subst Z,z,$1))))))))))))))))))))))))))
273impl_to_image = kanaka/mal-test-$(call lc,$(1))
274
275actual_impl = $(if $(filter mal,$(1)),$(MAL_IMPL),$(1))
276
277get_build_prefix = $(if $(strip $(DOCKERIZE)),docker run -it --rm -u $(shell id -u) -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal -w /mal/$(1) $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) $(call impl_to_image,$(1)) ,)
278get_run_prefix = $(if $(strip $(DOCKERIZE)),docker run -it --rm -u $(shell id -u) -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal -w /mal/$(call actual_impl,$(1)) $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) $(call impl_to_image,$(call actual_impl,$(1))) ,)
db4c329a 279
31690700 280
50a964ce
DM
281vimscript_TEST_OPTS = --test-timeout 30
282ifeq ($(MAL_IMPL),vimscript)
283mal_TEST_OPTS = --start-timeout 60 --test-timeout 180
284endif
31690700
JM
285
286# Derived lists
287STEPS = $(sort $(filter step%,$(.VARIABLES)))
8569b2af
JM
288DO_IMPLS = $(filter-out $(SKIP_IMPLS),$(IMPLS))
289IMPL_TESTS = $(foreach impl,$(DO_IMPLS),test^$(impl))
31690700 290STEP_TESTS = $(foreach step,$(STEPS),test^$(step))
dca6b585 291ALL_TESTS = $(filter-out $(test_EXCLUDES),\
31690700 292 $(strip $(sort \
8569b2af 293 $(foreach impl,$(DO_IMPLS),\
31690700
JM
294 $(foreach step,$(STEPS),test^$(impl)^$(step))))))
295
cf1d3eae
JM
296DOCKER_BUILD = $(foreach impl,$(DO_IMPLS),docker-build^$(impl))
297
dca6b585 298IMPL_PERF = $(foreach impl,$(filter-out $(perf_EXCLUDES),$(DO_IMPLS)),perf^$(impl))
db4c329a 299
854cf2a6
DM
300IMPL_REPL = $(foreach impl,$(DO_IMPLS),repl^$(impl))
301ALL_REPL = $(strip $(sort \
302 $(foreach impl,$(DO_IMPLS),\
303 $(foreach step,$(STEPS),repl^$(impl)^$(step)))))
db4c329a 304
31690700
JM
305#
306# Build rules
307#
308
4fc7a281 309# Build a program in an implementation directory
f045aba1
JM
310# Make sure we always try and build first because the dependencies are
311# encoded in the implementation Makefile not here
312.PHONY: $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s))))
4fc7a281 313$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s)))):
f045aba1 314 $(foreach impl,$(word 1,$(subst /, ,$(@))),\
4959b19d
JM
315 $(if $(DOCKERIZE), \
316 $(call get_build_prefix,$(impl))$(MAKE) $(patsubst $(impl)/%,%,$(@)), \
317 $(MAKE) -C $(impl) $(subst $(impl)/,,$(@))))
31690700 318
5b207de7 319# Allow IMPL, and IMPL^STEP
31690700 320.SECONDEXPANSION:
5b207de7 321$(DO_IMPLS): $$(foreach s,$$(STEPS),$$(call $$(@)_STEP_TO_PROG,$$(s)))
31690700
JM
322
323.SECONDEXPANSION:
5b207de7
JM
324$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(i)^$(s))): $$(call $$(word 1,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 2,$$(subst ^, ,$$(@))))
325
326
327#
328# Test rules
329#
31690700
JM
330
331.SECONDEXPANSION:
332$(ALL_TESTS): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
333 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
334 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
d5221bcf 335 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)) && \
31690700 336 $(foreach test,$(call STEP_TEST_FILES,$(impl),$(step)),\
d5221bcf
DM
337 echo '----------------------------------------------' && \
338 echo 'Testing $@, step file: $+, test file: $(test)' && \
a1eb30fc
JM
339 echo 'Running: $(call get_run_prefix,$(impl))../runtest.py $(TEST_OPTS) $(opt_DEFERRABLE) $(opt_OPTIONAL) $(call $(impl)_TEST_OPTS) ../$(test) -- $(call $(impl)_RUNSTEP,$(step),$(+))' && \
340 $(call get_run_prefix,$(impl))../runtest.py $(TEST_OPTS) $(opt_DEFERRABLE) $(opt_OPTIONAL) $(call $(impl)_TEST_OPTS) ../$(test) -- $(call $(impl)_RUNSTEP,$(step),$(+)) &&) \
d5221bcf 341 true))
31690700 342
5b207de7 343# Allow test, tests, test^STEP, test^IMPL, and test^IMPL^STEP
31690700
JM
344test: $(ALL_TESTS)
345tests: $(ALL_TESTS)
346
5b207de7
JM
347.SECONDEXPANSION:
348$(IMPL_TESTS): $$(filter $$@^%,$$(ALL_TESTS))
31690700 349
5b207de7
JM
350.SECONDEXPANSION:
351$(STEP_TESTS): $$(foreach step,$$(subst test^,,$$@),$$(filter %^$$(step),$$(ALL_TESTS)))
31690700 352
db4c329a 353
5b207de7
JM
354#
355# Dist rules
356#
b6dc3e37
JM
357
358dist: $(IMPL_DIST)
31690700 359
712af9ef 360.SECONDEXPANSION:
b6dc3e37 361$(IMPL_DIST):
712af9ef
JM
362 @echo "----------------------------------------------"; \
363 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
b6dc3e37
JM
364 echo "Running: make -C $(impl) dist"; \
365 $(MAKE) --no-print-directory -C $(impl) dist)
366
712af9ef 367
5b207de7 368#
cf1d3eae 369# Docker build rules
5b207de7 370#
cf1d3eae
JM
371
372docker-build: $(DOCKER_BUILD)
373
374.SECONDEXPANSION:
375$(DOCKER_BUILD):
376 echo "----------------------------------------------"; \
377 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
4959b19d
JM
378 echo "Running: docker build -t $(call impl_to_image,$(impl)) .:"; \
379 cd $(impl) && docker build -t $(call impl_to_image,$(impl)) .)
db4c329a 380
5b207de7
JM
381
382#
db4c329a 383# Performance test rules
5b207de7 384#
db4c329a
JM
385
386perf: $(IMPL_PERF)
387
388.SECONDEXPANSION:
389$(IMPL_PERF):
390 @echo "----------------------------------------------"; \
391 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
392 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
393 echo "Performance test for $(impl):"; \
4959b19d
JM
394 echo 'Running: $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf1.mal)'; \
395 $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf1.mal); \
db4c329a 396 echo 'Running: $(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf2.mal)'; \
4959b19d 397 $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf2.mal); \
699f0ad2 398 echo 'Running: $(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf3.mal)'; \
4959b19d 399 $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf3.mal))
db4c329a 400
854cf2a6 401
5b207de7 402#
854cf2a6 403# REPL invocation rules
5b207de7 404#
854cf2a6
DM
405
406.SECONDEXPANSION:
407$(ALL_REPL): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
408 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
409 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
410 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
411 echo 'REPL implementation $(impl), step file: $+'; \
4959b19d
JM
412 echo 'Running: $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,$(step),$(+))'; \
413 $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,$(step),$(+));))
bcfd8b70 414
5b207de7
JM
415# Allow repl^IMPL^STEP and repl^IMPL (which starts REPL of stepA)
416.SECONDEXPANSION:
417$(IMPL_REPL): $$@^stepA
418
dca6b585
JM
419#
420# Utility functions
421#
422.SECONDEXPANSION:
423print-%:
424 @echo "$($(*))"
bcfd8b70 425
5b207de7 426#
bcfd8b70 427# Recursive rules (call make FOO in each subdirectory)
5b207de7 428#
bcfd8b70
JM
429
430define recur_template
431.PHONY: $(1)
432$(1): $(2)
433.SECONDEXPANSION:
434$(2):
435 @echo "----------------------------------------------"; \
436 $$(foreach impl,$$(word 2,$$(subst ^, ,$$(@))),\
4959b19d
JM
437 $$(if $$(DOCKERIZE), \
438 echo "Running: $$(call get_build_prefix,$$(impl))$$(MAKE) --no-print-directory $(1)"; \
439 $$(call get_build_prefix,$$(impl))$$(MAKE) --no-print-directory $(1), \
440 echo "Running: $$(MAKE) --no-print-directory -C $$(impl) $(1)"; \
441 $$(MAKE) --no-print-directory -C $$(impl) $(1)))
bcfd8b70
JM
442endef
443
444recur_impls_ = $(filter-out $(foreach impl,$($(1)_EXCLUDES),$(1)^$(impl)),$(foreach impl,$(IMPLS),$(1)^$(impl)))
445
446# recursive clean
447$(eval $(call recur_template,clean,$(call recur_impls_,clean)))
448
449# recursive stats
450$(eval $(call recur_template,stats,$(call recur_impls_,stats)))
451$(eval $(call recur_template,stats-lisp,$(call recur_impls_,stats-lisp)))
452
453# recursive dist
454$(eval $(call recur_template,dist,$(call recur_impls_,dist)))