Hy: step0
[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 d chuck clojure coffee common-lisp cpp crystal cs dart \
82 erlang elisp elixir es6 factor forth fsharp go groovy gst guile haskell \
83 haxe hy io java julia js kotlin logo lua make mal ocaml matlab miniMAL \
84 nim objc objpascal 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 livescript elm
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 plpgsql_TEST_OPTS = --start-timeout 60 --test-timeout 180
140 plsql_TEST_OPTS = --start-timeout 120 --test-timeout 120
141 perl6_TEST_OPTS = --test-timeout=60
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 haxe_STEP_TO_PROG_neko = haxe/$($(1)).n
158 haxe_STEP_TO_PROG_python = haxe/$($(1)).py
159 haxe_STEP_TO_PROG_cpp = haxe/cpp/$($(1))
160 haxe_STEP_TO_PROG_js = haxe/$($(1)).js
161
162 clojure_STEP_TO_PROG_clj = clojure/target/$($(1)).jar
163 clojure_STEP_TO_PROG_cljs = clojure/src/mal/$($(1)).cljc
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/$($(1)).bas
178 basic_STEP_TO_PROG = $(basic_STEP_TO_PROG_$(basic_MODE))
179 c_STEP_TO_PROG = c/$($(1))
180 d_STEP_TO_PROG = d/$($(1))
181 chuck_STEP_TO_PROG = chuck/$($(1)).ck
182 clojure_STEP_TO_PROG = $(clojure_STEP_TO_PROG_$(clojure_MODE))
183 coffee_STEP_TO_PROG = coffee/$($(1)).coffee
184 common-lisp_STEP_TO_PROG = common-lisp/$($(1))
185 cpp_STEP_TO_PROG = cpp/$($(1))
186 crystal_STEP_TO_PROG = crystal/$($(1))
187 cs_STEP_TO_PROG = cs/$($(1)).exe
188 dart_STEP_TO_PROG = dart/$($(1)).dart
189 elisp_STEP_TO_PROG = elisp/$($(1)).el
190 elixir_STEP_TO_PROG = elixir/lib/mix/tasks/$($(1)).ex
191 erlang_STEP_TO_PROG = erlang/$($(1))
192 es6_STEP_TO_PROG = es6/build/$($(1)).js
193 factor_STEP_TO_PROG = factor/$($(1))/$($(1)).factor
194 forth_STEP_TO_PROG = forth/$($(1)).fs
195 fsharp_STEP_TO_PROG = fsharp/$($(1)).exe
196 go_STEP_TO_PROG = go/$($(1))
197 groovy_STEP_TO_PROG = groovy/$($(1)).groovy
198 gst_STEP_TO_PROG = gst/$($(1)).st
199 java_STEP_TO_PROG = java/target/classes/mal/$($(1)).class
200 haskell_STEP_TO_PROG = haskell/$($(1))
201 haxe_STEP_TO_PROG = $(haxe_STEP_TO_PROG_$(haxe_MODE))
202 hy_STEP_TO_PROG = hy/$($(1)).hy
203 io_STEP_TO_PROG = io/$($(1)).io
204 julia_STEP_TO_PROG = julia/$($(1)).jl
205 js_STEP_TO_PROG = js/$($(1)).js
206 kotlin_STEP_TO_PROG = kotlin/$($(1)).jar
207 lua_STEP_TO_PROG = lua/$($(1)).lua
208 make_STEP_TO_PROG = make/$($(1)).mk
209 mal_STEP_TO_PROG = mal/$($(1)).mal
210 ocaml_STEP_TO_PROG = ocaml/$($(1))
211 matlab_STEP_TO_PROG = matlab/$($(1)).m
212 miniMAL_STEP_TO_PROG = miniMAL/$($(1)).json
213 nim_STEP_TO_PROG = nim/$($(1))
214 objc_STEP_TO_PROG = objc/$($(1))
215 objpascal_STEP_TO_PROG = objpascal/$($(1))
216 perl_STEP_TO_PROG = perl/$($(1)).pl
217 perl6_STEP_TO_PROG = perl6/$($(1)).pl
218 php_STEP_TO_PROG = php/$($(1)).php
219 pil_STEP_TO_PROG = pil/$($(1)).l
220 plpgsql_STEP_TO_PROG = plpgsql/$($(1)).sql
221 plsql_STEP_TO_PROG = plsql/$($(1)).sql
222 powershell_STEP_TO_PROG = powershell/$($(1)).ps1
223 ps_STEP_TO_PROG = ps/$($(1)).ps
224 python_STEP_TO_PROG = python/$($(1)).py
225 r_STEP_TO_PROG = r/$($(1)).r
226 racket_STEP_TO_PROG = racket/$($(1)).rkt
227 rexx_STEP_TO_PROG = rexx/$($(1)).rexxpp
228 rpython_STEP_TO_PROG = rpython/$($(1))
229 ruby_STEP_TO_PROG = ruby/$($(1)).rb
230 rust_STEP_TO_PROG = rust/target/release/$($(1))
231 scala_STEP_TO_PROG = scala/target/scala-2.11/classes/$($(1)).class
232 scheme_STEP_TO_PROG = $(scheme_STEP_TO_PROG_$(scheme_MODE))
233 skew_STEP_TO_PROG = skew/$($(1)).js
234 swift_STEP_TO_PROG = swift/$($(1))
235 swift3_STEP_TO_PROG = swift3/$($(1))
236 tcl_STEP_TO_PROG = tcl/$($(1)).tcl
237 ts_STEP_TO_PROG = ts/$($(1)).js
238 vb_STEP_TO_PROG = vb/$($(1)).exe
239 vhdl_STEP_TO_PROG = vhdl/$($(1))
240 vimscript_STEP_TO_PROG = vimscript/$($(1)).vim
241 guile_STEP_TO_PROG = guile/$($(1)).scm
242 livescript_STEP_TO_PROG = livescript/$($(1)).js
243 elm_STEP_TO_PROG = elm/$($(1)).js
244
245
246 #
247 # General settings and utility functions
248 #
249
250 # Needed some argument munging
251 COMMA = ,
252 noop =
253 SPACE = $(noop) $(noop)
254 export FACTOR_ROOTS := .
255
256 opt_DEFERRABLE = $(if $(strip $(DEFERRABLE)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(DEFERRABLE)),--deferrable,--no-deferrable),--no-deferrable)
257 opt_OPTIONAL = $(if $(strip $(OPTIONAL)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(OPTIONAL)),--optional,--no-optional),--no-optional)
258
259 # Return list of test files for a given step. If REGRESS is set then
260 # test files will include step 2 tests through tests for the step
261 # being tested.
262 STEP_TEST_FILES = $(strip $(wildcard \
263 $(foreach s,$(if $(strip $(REGRESS)),$(regress_$(2)),$(2)),\
264 $(1)/tests/$($(s))$(EXTENSION) tests/$($(s))$(EXTENSION))))
265
266 # DOCKERIZE utility functions
267 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))))))))))))))))))))))))))
268 impl_to_image = kanaka/mal-test-$(call lc,$(1))
269
270 actual_impl = $(if $(filter mal,$(1)),$(MAL_IMPL),$(1))
271
272 # Takes impl
273 # Returns nothing if DOCKERIZE is not set, otherwise returns the
274 # docker prefix necessary to run make within the docker environment
275 # for this impl
276 get_build_command = $(strip $(if $(strip $(DOCKERIZE)),\
277 docker run \
278 -it --rm -u $(shell id -u) \
279 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
280 -w /mal/$(1) \
281 $(if $(strip $($(1)_MODE)),-e $(1)_MODE=$($(1)_MODE),) \
282 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
283 $(call impl_to_image,$(1)) \
284 $(MAKE) $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),) \
285 ,\
286 $(MAKE) $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),)))
287
288 # Takes impl and step args. Optional env vars and dockerize args
289 # Returns a command prefix (docker command and environment variables)
290 # necessary to launch the given impl and step
291 get_run_prefix = $(strip $(if $(strip $(DOCKERIZE) $(4)),\
292 docker run -e STEP=$($2) -e MAL_IMPL=$(MAL_IMPL) \
293 -it --rm -u $(shell id -u) \
294 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
295 -w /mal/$(call actual_impl,$(1)) \
296 $(if $(strip $($(1)_MODE)),-e $(1)_MODE=$($(1)_MODE),) \
297 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
298 $(foreach env,$(3),-e $(env)) \
299 $(call impl_to_image,$(call actual_impl,$(1))) \
300 ,\
301 env STEP=$($2) MAL_IMPL=$(MAL_IMPL) \
302 $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),) \
303 $(if $(filter factor,$(1)),FACTOR_ROOTS=$(FACTOR_ROOTS),) \
304 $(3)))
305
306 # Takes impl and step
307 # Returns the runtest command prefix (with runtest options) for testing the given step
308 get_runtest_cmd = $(call get_run_prefix,$(1),$(2),$(if $(filter cs fsharp tcl vb,$(1)),RAW=1,)) \
309 ../runtest.py $(opt_DEFERRABLE) $(opt_OPTIONAL) $(call $(1)_TEST_OPTS) $(TEST_OPTS)
310
311 # Takes impl and step
312 # Returns the runtest command prefix (with runtest options) for testing the given step
313 get_argvtest_cmd = $(call get_run_prefix,$(1),$(2)) ../run_argv_test.sh
314
315 # Derived lists
316 STEPS = $(sort $(filter step%,$(.VARIABLES)))
317 DO_IMPLS = $(filter-out $(SKIP_IMPLS),$(IMPLS))
318 IMPL_TESTS = $(foreach impl,$(DO_IMPLS),test^$(impl))
319 STEP_TESTS = $(foreach step,$(STEPS),test^$(step))
320 ALL_TESTS = $(filter-out $(test_EXCLUDES),\
321 $(strip $(sort \
322 $(foreach impl,$(DO_IMPLS),\
323 $(foreach step,$(STEPS),test^$(impl)^$(step))))))
324
325 DOCKER_BUILD = $(foreach impl,$(DO_IMPLS),docker-build^$(impl))
326
327 DOCKER_SHELL = $(foreach impl,$(DO_IMPLS),docker-shell^$(impl))
328
329 IMPL_PERF = $(foreach impl,$(filter-out $(perf_EXCLUDES),$(DO_IMPLS)),perf^$(impl))
330
331 IMPL_REPL = $(foreach impl,$(DO_IMPLS),repl^$(impl))
332 ALL_REPL = $(strip $(sort \
333 $(foreach impl,$(DO_IMPLS),\
334 $(foreach step,$(STEPS),repl^$(impl)^$(step)))))
335
336
337 #
338 # Build rules
339 #
340
341 # Enable secondary expansion for all rules
342 .SECONDEXPANSION:
343
344 # Build a program in an implementation directory
345 # Make sure we always try and build first because the dependencies are
346 # encoded in the implementation Makefile not here
347 .PHONY: $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s))))
348 $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s)))):
349 $(foreach impl,$(word 1,$(subst /, ,$(@))),\
350 $(if $(DOCKERIZE), \
351 $(call get_build_command,$(impl)) $(patsubst $(impl)/%,%,$(@)), \
352 $(call get_build_command,$(impl)) -C $(impl) $(subst $(impl)/,,$(@))))
353
354 # Allow IMPL, and IMPL^STEP
355 $(DO_IMPLS): $$(foreach s,$$(STEPS),$$(call $$(@)_STEP_TO_PROG,$$(s)))
356
357 $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(i)^$(s))): $$(call $$(word 1,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 2,$$(subst ^, ,$$(@))))
358
359
360 #
361 # Test rules
362 #
363
364 $(ALL_TESTS): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
365 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
366 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
367 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)) && \
368 $(foreach test,$(call STEP_TEST_FILES,$(impl),$(step)),\
369 echo '----------------------------------------------' && \
370 echo 'Testing $@; step file: $+, test file: $(test)' && \
371 echo 'Running: $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run' && \
372 $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run && \
373 $(if $(filter tests/$(argv_STEP)$(EXTENSION),$(test)),\
374 echo '----------------------------------------------' && \
375 echo 'Testing ARGV of $@; step file: $+' && \
376 echo 'Running: $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run ' && \
377 $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run && ,\
378 true && ))\
379 true))
380
381 # Allow test, tests, test^STEP, test^IMPL, and test^IMPL^STEP
382 test: $(ALL_TESTS)
383 tests: $(ALL_TESTS)
384
385 $(IMPL_TESTS): $$(filter $$@^%,$$(ALL_TESTS))
386
387 $(STEP_TESTS): $$(foreach step,$$(subst test^,,$$@),$$(filter %^$$(step),$$(ALL_TESTS)))
388
389
390 #
391 # Docker build rules
392 #
393
394 docker-build: $(DOCKER_BUILD)
395
396 $(DOCKER_BUILD):
397 @echo "----------------------------------------------"; \
398 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
399 echo "Running: docker build -t $(call impl_to_image,$(impl)) .:"; \
400 cd $(impl) && docker build -t $(call impl_to_image,$(impl)) .)
401
402 #
403 # Docker shell rules
404 #
405
406 $(DOCKER_SHELL):
407 @echo "----------------------------------------------"; \
408 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
409 echo "Running: $(call get_run_prefix,$(impl),stepA,,dockerize) bash"; \
410 $(call get_run_prefix,$(impl),stepA,,dockerize) bash)
411
412
413 #
414 # Performance test rules
415 #
416
417 perf: $(IMPL_PERF)
418
419 $(IMPL_PERF):
420 @echo "----------------------------------------------"; \
421 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
422 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
423 echo "Performance test for $(impl):"; \
424 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal'; \
425 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal; \
426 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal'; \
427 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal; \
428 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal'; \
429 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal)
430
431
432 #
433 # REPL invocation rules
434 #
435
436 $(ALL_REPL): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
437 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
438 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
439 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
440 echo 'REPL implementation $(impl), step file: $+'; \
441 echo 'Running: $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run $(RUN_ARGS)'; \
442 $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run $(RUN_ARGS);))
443
444 # Allow repl^IMPL^STEP and repl^IMPL (which starts REPL of stepA)
445 $(IMPL_REPL): $$@^stepA
446
447 #
448 # Utility functions
449 #
450 print-%:
451 @echo "$($(*))"
452
453 #
454 # Recursive rules (call make FOO in each subdirectory)
455 #
456
457 define recur_template
458 .PHONY: $(1)
459 $(1): $(2)
460 $(2):
461 @echo "----------------------------------------------"; \
462 $$(foreach impl,$$(word 2,$$(subst ^, ,$$(@))),\
463 $$(if $$(DOCKERIZE), \
464 echo "Running: $$(call get_build_command,$$(impl)) --no-print-directory $(1)"; \
465 $$(call get_build_command,$$(impl)) --no-print-directory $(1), \
466 echo "Running: $$(call get_build_command,$$(impl)) --no-print-directory -C $$(impl) $(1)"; \
467 $$(call get_build_command,$$(impl)) --no-print-directory -C $$(impl) $(1)))
468 endef
469
470 recur_impls_ = $(filter-out $(foreach impl,$($(1)_EXCLUDES),$(1)^$(impl)),$(foreach impl,$(IMPLS),$(1)^$(impl)))
471
472 # recursive clean
473 $(eval $(call recur_template,clean,$(call recur_impls_,clean)))
474
475 # recursive stats
476 $(eval $(call recur_template,stats,$(call recur_impls_,stats)))
477 $(eval $(call recur_template,stats-lisp,$(call recur_impls_,stats-lisp)))
478
479 # recursive dist
480 $(eval $(call recur_template,dist,$(call recur_impls_,dist)))