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