Merge pull request #353 from bjh21/bjh21-minor-fixes
[jackhill/mal.git] / Makefile
1 # Usage/help
2 all 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 'make TEST_OPTS="--opt ..." # options to pass to runtest.py'
36 @echo
37 @echo 'Other:'
38 @echo
39 @echo 'make "docker-build^IMPL" # build docker image for IMPL'
40 @echo
41 @echo 'make "docker-shell^IMPL" # start bash shell in docker image for IMPL'
42 @echo
43
44 #
45 # Command line settings
46 #
47
48 MAL_IMPL = js
49
50 # cbm or qbasic
51 basic_MODE = cbm
52 # clj or cljs (Clojure vs ClojureScript/lumo)
53 clojure_MODE = clj
54 # python, js, cpp, or neko
55 haxe_MODE = neko
56 # octave or matlab
57 matlab_MODE = octave
58 # python, python2 or python3
59 python_MODE = python
60 # scheme (chibi, kawa, gauche, chicken, sagittarius, cyclone, foment)
61 scheme_MODE = chibi
62 # wasmtime js node wace_libc wace_fooboot
63 wasm_MODE = wasmtime
64
65 # Path to loccount for counting LOC stats
66 LOCCOUNT = loccount
67
68 # Extra options to pass to runtest.py
69 TEST_OPTS =
70
71 # Test with previous test files not just the test files for the
72 # current step. Step 0 and 1 tests are special and not included in
73 # later steps.
74 REGRESS =
75
76 DEFERRABLE=1
77 OPTIONAL=1
78
79 # Run target/rule within docker image for the implementation
80 DOCKERIZE =
81
82
83 #
84 # Implementation specific settings
85 #
86
87 IMPLS = ada ada.2 awk bash basic c chuck clojure coffee common-lisp cpp crystal cs d dart \
88 elisp elixir elm erlang es6 factor fantom forth fsharp go groovy gnu-smalltalk \
89 guile haskell haxe hy io java js julia kotlin livescript logo lua make mal \
90 matlab miniMAL nasm nim objc objpascal ocaml perl perl6 php picolisp plpgsql \
91 plsql powershell ps python r racket rexx rpython ruby rust scala scheme skew \
92 swift swift3 swift4 tcl ts vb vhdl vimscript wasm yorick
93
94 EXTENSION = .mal
95
96 step0 = step0_repl
97 step1 = step1_read_print
98 step2 = step2_eval
99 step3 = step3_env
100 step4 = step4_if_fn_do
101 step5 = step5_tco
102 step6 = step6_file
103 step7 = step7_quote
104 step8 = step8_macros
105 step9 = step9_try
106 stepA = stepA_mal
107
108 argv_STEP = step6_file
109
110
111 regress_step0 = step0
112 regress_step1 = step1
113 regress_step2 = step2
114 regress_step3 = $(regress_step2) step3
115 regress_step4 = $(regress_step3) step4
116 regress_step5 = $(regress_step4) step5
117 regress_step6 = $(regress_step5) step6
118 regress_step7 = $(regress_step6) step7
119 regress_step8 = $(regress_step7) step8
120 regress_step9 = $(regress_step8) step9
121 regress_stepA = $(regress_step9) stepA
122
123 step5_EXCLUDES += bash # never completes at 10,000
124 step5_EXCLUDES += basic # too slow, and limited to ints of 2^16
125 step5_EXCLUDES += logo # too slow for 10,000
126 step5_EXCLUDES += make # no TCO capability (iteration or recursion)
127 step5_EXCLUDES += mal # host impl dependent
128 step5_EXCLUDES += matlab # never completes at 10,000
129 step5_EXCLUDES += plpgsql # too slow for 10,000
130 step5_EXCLUDES += plsql # too slow for 10,000
131 step5_EXCLUDES += powershell # too slow for 10,000
132 step5_EXCLUDES += $(if $(filter cpp,$(haxe_MODE)),haxe,) # cpp finishes 10,000, segfaults at 100,000
133
134 dist_EXCLUDES += mal
135 # TODO: still need to implement dist
136 dist_EXCLUDES += guile io julia matlab swift
137
138
139 # Extra options to pass to runtest.py
140 logo_TEST_OPTS = --start-timeout 60 --test-timeout 120
141 mal_TEST_OPTS = --start-timeout 60 --test-timeout 120
142 miniMAL_TEST_OPTS = --start-timeout 60 --test-timeout 120
143 perl6_TEST_OPTS = --test-timeout=60
144 plpgsql_TEST_OPTS = --start-timeout 60 --test-timeout 180
145 plsql_TEST_OPTS = --start-timeout 120 --test-timeout 120
146 vimscript_TEST_OPTS = --test-timeout 30
147 ifeq ($(MAL_IMPL),vimscript)
148 mal_TEST_OPTS = --start-timeout 60 --test-timeout 180
149 else ifeq ($(MAL_IMPL),powershell)
150 mal_TEST_OPTS = --start-timeout 60 --test-timeout 180
151 endif
152
153
154 #
155 # Implementation specific utility functions
156 #
157
158 basic_STEP_TO_PROG_cbm = basic/$($(1)).bas
159 basic_STEP_TO_PROG_qbasic = basic/$($(1))
160
161 clojure_STEP_TO_PROG_clj = clojure/target/$($(1)).jar
162 clojure_STEP_TO_PROG_cljs = clojure/src/mal/$($(1)).cljc
163
164 haxe_STEP_TO_PROG_neko = haxe/$($(1)).n
165 haxe_STEP_TO_PROG_python = haxe/$($(1)).py
166 haxe_STEP_TO_PROG_cpp = haxe/cpp/$($(1))
167 haxe_STEP_TO_PROG_js = haxe/$($(1)).js
168
169 scheme_STEP_TO_PROG_chibi = scheme/$($(1)).scm
170 scheme_STEP_TO_PROG_kawa = scheme/out/$($(1)).class
171 scheme_STEP_TO_PROG_gauche = scheme/$($(1)).scm
172 scheme_STEP_TO_PROG_chicken = scheme/$($(1))
173 scheme_STEP_TO_PROG_sagittarius = scheme/$($(1)).scm
174 scheme_STEP_TO_PROG_cyclone = scheme/$($(1))
175 scheme_STEP_TO_PROG_foment = scheme/$($(1)).scm
176
177 # Map of step (e.g. "step8") to executable file for that step
178 ada_STEP_TO_PROG = ada/$($(1))
179 ada.2_STEP_TO_PROG = ada.2/$($(1))
180 awk_STEP_TO_PROG = awk/$($(1)).awk
181 bash_STEP_TO_PROG = bash/$($(1)).sh
182 basic_STEP_TO_PROG = $(basic_STEP_TO_PROG_$(basic_MODE))
183 c_STEP_TO_PROG = c/$($(1))
184 chuck_STEP_TO_PROG = chuck/$($(1)).ck
185 clojure_STEP_TO_PROG = $(clojure_STEP_TO_PROG_$(clojure_MODE))
186 coffee_STEP_TO_PROG = coffee/$($(1)).coffee
187 common-lisp_STEP_TO_PROG = common-lisp/$($(1))
188 cpp_STEP_TO_PROG = cpp/$($(1))
189 crystal_STEP_TO_PROG = crystal/$($(1))
190 cs_STEP_TO_PROG = cs/$($(1)).exe
191 d_STEP_TO_PROG = d/$($(1))
192 dart_STEP_TO_PROG = dart/$($(1)).dart
193 elisp_STEP_TO_PROG = elisp/$($(1)).el
194 elixir_STEP_TO_PROG = elixir/lib/mix/tasks/$($(1)).ex
195 elm_STEP_TO_PROG = elm/$($(1)).js
196 erlang_STEP_TO_PROG = erlang/$($(1))
197 es6_STEP_TO_PROG = es6/$($(1)).mjs
198 factor_STEP_TO_PROG = factor/$($(1))/$($(1)).factor
199 fantom_STEP_TO_PROG = fantom/lib/fan/$($(1)).pod
200 forth_STEP_TO_PROG = forth/$($(1)).fs
201 fsharp_STEP_TO_PROG = fsharp/$($(1)).exe
202 go_STEP_TO_PROG = go/$($(1))
203 groovy_STEP_TO_PROG = groovy/$($(1)).groovy
204 gnu-smalltalk_STEP_TO_PROG = gnu-smalltalk/$($(1)).st
205 guile_STEP_TO_PROG = guile/$($(1)).scm
206 haskell_STEP_TO_PROG = haskell/$($(1))
207 haxe_STEP_TO_PROG = $(haxe_STEP_TO_PROG_$(haxe_MODE))
208 hy_STEP_TO_PROG = hy/$($(1)).hy
209 io_STEP_TO_PROG = io/$($(1)).io
210 java_STEP_TO_PROG = java/target/classes/mal/$($(1)).class
211 js_STEP_TO_PROG = js/$($(1)).js
212 julia_STEP_TO_PROG = julia/$($(1)).jl
213 kotlin_STEP_TO_PROG = kotlin/$($(1)).jar
214 livescript_STEP_TO_PROG = livescript/$($(1)).js
215 logo_STEP_TO_PROG = logo/$($(1)).lg
216 lua_STEP_TO_PROG = lua/$($(1)).lua
217 make_STEP_TO_PROG = make/$($(1)).mk
218 mal_STEP_TO_PROG = mal/$($(1)).mal
219 matlab_STEP_TO_PROG = matlab/$($(1)).m
220 miniMAL_STEP_TO_PROG = miniMAL/$($(1)).json
221 nasm_STEP_TO_PROG = nasm/$($(1))
222 nim_STEP_TO_PROG = nim/$($(1))
223 objc_STEP_TO_PROG = objc/$($(1))
224 objpascal_STEP_TO_PROG = objpascal/$($(1))
225 ocaml_STEP_TO_PROG = ocaml/$($(1))
226 perl_STEP_TO_PROG = perl/$($(1)).pl
227 perl6_STEP_TO_PROG = perl6/$($(1)).pl
228 php_STEP_TO_PROG = php/$($(1)).php
229 picolisp_STEP_TO_PROG = picolisp/$($(1)).l
230 plpgsql_STEP_TO_PROG = plpgsql/$($(1)).sql
231 plsql_STEP_TO_PROG = plsql/$($(1)).sql
232 powershell_STEP_TO_PROG = powershell/$($(1)).ps1
233 ps_STEP_TO_PROG = ps/$($(1)).ps
234 python_STEP_TO_PROG = python/$($(1)).py
235 r_STEP_TO_PROG = r/$($(1)).r
236 racket_STEP_TO_PROG = racket/$($(1)).rkt
237 rexx_STEP_TO_PROG = rexx/$($(1)).rexxpp
238 rpython_STEP_TO_PROG = rpython/$($(1))
239 ruby_STEP_TO_PROG = ruby/$($(1)).rb
240 rust_STEP_TO_PROG = rust/$($(1))
241 scala_STEP_TO_PROG = scala/target/scala-2.11/classes/$($(1)).class
242 scheme_STEP_TO_PROG = $(scheme_STEP_TO_PROG_$(scheme_MODE))
243 skew_STEP_TO_PROG = skew/$($(1)).js
244 swift_STEP_TO_PROG = swift/$($(1))
245 swift3_STEP_TO_PROG = swift3/$($(1))
246 swift4_STEP_TO_PROG = swift4/$($(1))
247 tcl_STEP_TO_PROG = tcl/$($(1)).tcl
248 ts_STEP_TO_PROG = ts/$($(1)).js
249 vb_STEP_TO_PROG = vb/$($(1)).exe
250 vhdl_STEP_TO_PROG = vhdl/$($(1))
251 vimscript_STEP_TO_PROG = vimscript/$($(1)).vim
252 wasm_STEP_TO_PROG = wasm/$($(1)).wasm
253 yorick_STEP_TO_PROG = yorick/$($(1)).i
254
255
256 #
257 # General settings and utility functions
258 #
259
260 # Needed some argument munging
261 COMMA = ,
262 noop =
263 SPACE = $(noop) $(noop)
264 export FACTOR_ROOTS := .
265
266 opt_DEFERRABLE = $(if $(strip $(DEFERRABLE)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(DEFERRABLE)),--deferrable,--no-deferrable),--no-deferrable)
267 opt_OPTIONAL = $(if $(strip $(OPTIONAL)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(OPTIONAL)),--optional,--no-optional),--no-optional)
268
269 # Return list of test files for a given step. If REGRESS is set then
270 # test files will include step 2 tests through tests for the step
271 # being tested.
272 STEP_TEST_FILES = $(strip $(wildcard \
273 $(foreach s,$(if $(strip $(REGRESS)),\
274 $(filter-out $(if $(filter $(1),$(step5_EXCLUDES)),step5,),\
275 $(regress_$(2)))\
276 ,$(2)),\
277 $(1)/tests/$($(s))$(EXTENSION) tests/$($(s))$(EXTENSION))))
278
279 # DOCKERIZE utility functions
280 lc = $(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))))))))))))))))))))))))))
281 impl_to_image = kanaka/mal-test-$(call lc,$(1))
282
283 actual_impl = $(if $(filter mal,$(1)),$(MAL_IMPL),$(1))
284
285 # Takes impl
286 # Returns nothing if DOCKERIZE is not set, otherwise returns the
287 # docker prefix necessary to run make within the docker environment
288 # for this impl
289 get_build_command = $(strip $(if $(strip $(DOCKERIZE)),\
290 docker run \
291 -it --rm -u $(shell id -u) \
292 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
293 -w /mal/$(1) \
294 $(if $(strip $($(1)_MODE)),-e $(1)_MODE=$($(1)_MODE),) \
295 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
296 $(call impl_to_image,$(1)) \
297 $(MAKE) $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),) \
298 ,\
299 $(MAKE) $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),)))
300
301 # Takes impl and step args. Optional env vars and dockerize args
302 # Returns a command prefix (docker command and environment variables)
303 # necessary to launch the given impl and step
304 get_run_prefix = $(strip $(if $(strip $(DOCKERIZE) $(4)),\
305 docker run -e STEP=$($2) -e MAL_IMPL=$(MAL_IMPL) \
306 -it --rm -u $(shell id -u) \
307 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
308 -w /mal/$(call actual_impl,$(1)) \
309 $(if $(strip $($(1)_MODE)),-e $(1)_MODE=$($(1)_MODE),) \
310 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
311 $(foreach env,$(3),-e $(env)) \
312 $(call impl_to_image,$(call actual_impl,$(1))) \
313 ,\
314 env STEP=$($2) MAL_IMPL=$(MAL_IMPL) \
315 $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),) \
316 $(if $(filter factor,$(1)),FACTOR_ROOTS=$(FACTOR_ROOTS),) \
317 $(3)))
318
319 # Takes impl and step
320 # Returns the runtest command prefix (with runtest options) for testing the given step
321 get_runtest_cmd = $(call get_run_prefix,$(1),$(2),$(if $(filter cs fsharp tcl vb,$(1)),RAW=1,)) \
322 ../runtest.py $(opt_DEFERRABLE) $(opt_OPTIONAL) $(call $(1)_TEST_OPTS) $(TEST_OPTS)
323
324 # Takes impl and step
325 # Returns the runtest command prefix (with runtest options) for testing the given step
326 get_argvtest_cmd = $(call get_run_prefix,$(1),$(2)) ../run_argv_test.sh
327
328 # Derived lists
329 STEPS = $(sort $(filter-out %_EXCLUDES,$(filter step%,$(.VARIABLES))))
330 DO_IMPLS = $(filter-out $(SKIP_IMPLS),$(IMPLS))
331 IMPL_TESTS = $(foreach impl,$(DO_IMPLS),test^$(impl))
332 STEP_TESTS = $(foreach step,$(STEPS),test^$(step))
333 ALL_TESTS = $(filter-out $(foreach e,$(step5_EXCLUDES),test^$(e)^step5),\
334 $(strip $(sort \
335 $(foreach impl,$(DO_IMPLS),\
336 $(foreach step,$(STEPS),test^$(impl)^$(step))))))
337
338 DOCKER_BUILD = $(foreach impl,$(DO_IMPLS),docker-build^$(impl))
339
340 DOCKER_SHELL = $(foreach impl,$(DO_IMPLS),docker-shell^$(impl))
341
342 IMPL_PERF = $(foreach impl,$(filter-out $(perf_EXCLUDES),$(DO_IMPLS)),perf^$(impl))
343
344 IMPL_STATS = $(foreach impl,$(DO_IMPLS),stats^$(impl))
345
346 IMPL_REPL = $(foreach impl,$(DO_IMPLS),repl^$(impl))
347 ALL_REPL = $(strip $(sort \
348 $(foreach impl,$(DO_IMPLS),\
349 $(foreach step,$(STEPS),repl^$(impl)^$(step)))))
350
351
352 #
353 # Build rules
354 #
355
356 # Enable secondary expansion for all rules
357 .SECONDEXPANSION:
358
359 # Build a program in an implementation directory
360 # Make sure we always try and build first because the dependencies are
361 # encoded in the implementation Makefile not here
362 .PHONY: $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s))))
363 $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s)))):
364 $(foreach impl,$(word 1,$(subst /, ,$(@))),\
365 $(if $(DOCKERIZE), \
366 $(call get_build_command,$(impl)) $(patsubst $(impl)/%,%,$(@)), \
367 $(call get_build_command,$(impl)) -C $(impl) $(subst $(impl)/,,$(@))))
368
369 # Allow IMPL, and IMPL^STEP
370 $(DO_IMPLS): $$(foreach s,$$(STEPS),$$(call $$(@)_STEP_TO_PROG,$$(s)))
371
372 $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(i)^$(s))): $$(call $$(word 1,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 2,$$(subst ^, ,$$(@))))
373
374
375 #
376 # Test rules
377 #
378
379 $(ALL_TESTS): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
380 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
381 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
382 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)) && \
383 $(foreach test,$(call STEP_TEST_FILES,$(impl),$(step)),\
384 echo '----------------------------------------------' && \
385 echo 'Testing $@; step file: $+, test file: $(test)' && \
386 echo 'Running: $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run' && \
387 $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run && \
388 $(if $(filter tests/$(argv_STEP)$(EXTENSION),$(test)),\
389 echo '----------------------------------------------' && \
390 echo 'Testing ARGV of $@; step file: $+' && \
391 echo 'Running: $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run ' && \
392 $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run && ,\
393 true && ))\
394 true))
395
396 # Allow test, tests, test^STEP, test^IMPL, and test^IMPL^STEP
397 test: $(ALL_TESTS)
398 tests: $(ALL_TESTS)
399
400 $(IMPL_TESTS): $$(filter $$@^%,$$(ALL_TESTS))
401
402 $(STEP_TESTS): $$(foreach step,$$(subst test^,,$$@),$$(filter %^$$(step),$$(ALL_TESTS)))
403
404
405 #
406 # Docker build rules
407 #
408
409 docker-build: $(DOCKER_BUILD)
410
411 $(DOCKER_BUILD):
412 @echo "----------------------------------------------"; \
413 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
414 echo "Running: docker build -t $(call impl_to_image,$(impl)) .:"; \
415 cd $(impl) && docker build -t $(call impl_to_image,$(impl)) .)
416
417 #
418 # Docker shell rules
419 #
420
421 $(DOCKER_SHELL):
422 @echo "----------------------------------------------"; \
423 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
424 echo "Running: $(call get_run_prefix,$(impl),stepA,,dockerize) bash"; \
425 $(call get_run_prefix,$(impl),stepA,,dockerize) bash)
426
427
428 #
429 # Performance test rules
430 #
431
432 perf: $(IMPL_PERF)
433
434 $(IMPL_PERF):
435 @echo "----------------------------------------------"; \
436 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
437 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
438 echo "Performance test for $(impl):"; \
439 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal'; \
440 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal; \
441 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal'; \
442 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal; \
443 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal'; \
444 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal)
445
446
447 #
448 # REPL invocation rules
449 #
450
451 $(ALL_REPL): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
452 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
453 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
454 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
455 echo 'REPL implementation $(impl), step file: $+'; \
456 echo 'Running: $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run $(RUN_ARGS)'; \
457 $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run $(RUN_ARGS);))
458
459 # Allow repl^IMPL^STEP and repl^IMPL (which starts REPL of stepA)
460 $(IMPL_REPL): $$@^stepA
461
462 #
463 # Stats test rules
464 #
465
466 # For a concise summary:
467 # make stats | egrep -A1 "^Stats for|^all" | egrep -v "^all|^--"
468 stats: $(IMPL_STATS)
469
470 $(IMPL_STATS):
471 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
472 echo "Stats for $(impl):"; \
473 $(LOCCOUNT) -x "Makefile|node_modules" $(impl))
474
475 #
476 # Utility functions
477 #
478 print-%:
479 @echo "$($(*))"
480
481 #
482 # Recursive rules (call make FOO in each subdirectory)
483 #
484
485 define recur_template
486 .PHONY: $(1)
487 $(1): $(2)
488 $(2):
489 @echo "----------------------------------------------"; \
490 $$(foreach impl,$$(word 2,$$(subst ^, ,$$(@))),\
491 $$(if $$(DOCKERIZE), \
492 echo "Running: $$(call get_build_command,$$(impl)) --no-print-directory $(1)"; \
493 $$(call get_build_command,$$(impl)) --no-print-directory $(1), \
494 echo "Running: $$(call get_build_command,$$(impl)) --no-print-directory -C $$(impl) $(1)"; \
495 $$(call get_build_command,$$(impl)) --no-print-directory -C $$(impl) $(1)))
496 endef
497
498 recur_impls_ = $(filter-out $(foreach impl,$($(1)_EXCLUDES),$(1)^$(impl)),$(foreach impl,$(IMPLS),$(1)^$(impl)))
499
500 # recursive clean
501 $(eval $(call recur_template,clean,$(call recur_impls_,clean)))
502
503 # recursive dist
504 $(eval $(call recur_template,dist,$(call recur_impls_,dist)))