Add support for printing functions
[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 63# Extra implementation specific options to pass to runtest.py
4eb88ef2 64logo_TEST_OPTS = --start-timeout 60 --test-timeout 120
337c8031 65mal_TEST_OPTS = --start-timeout 60 --test-timeout 120
f2b067cb 66miniMAL_TEST_OPTS = --start-timeout 60 --test-timeout 120
08e44c41 67plpgsql_TEST_OPTS = --start-timeout 60 --test-timeout 180
ba1649e4 68plsql_TEST_OPTS = --start-timeout 120 --test-timeout 120
a7081401 69perl6_TEST_OPTS = --test-timeout=60
f2b067cb
JM
70
71DOCKERIZE=
337c8031 72
5b207de7
JM
73# Run target/rule within docker image for the implementation
74DOCKERIZE =
a05f7822 75
31690700
JM
76#
77# Settings
78#
79
1c7168cf 80IMPLS = ada awk bash c d chuck clojure coffee common_lisp cpp crystal cs erlang elisp \
0067158f 81 elixir es6 factor forth fsharp go groovy guile haskell haxe \
4eb88ef2 82 io java julia js kotlin logo lua make mal ocaml matlab miniMAL \
d7d197f9
JM
83 nim objc objpascal perl perl6 php plpgsql plsql powershell ps \
84 python r racket rpython ruby rust scala swift swift3 tcl vb vhdl \
85 vimscript
31690700
JM
86
87step0 = step0_repl
88step1 = step1_read_print
89step2 = step2_eval
90step3 = step3_env
91step4 = step4_if_fn_do
92step5 = step5_tco
93step6 = step6_file
94step7 = step7_quote
95step8 = step8_macros
01c97316 96step9 = step9_try
90f618cb 97stepA = stepA_mal
31690700 98
17180e85
JM
99regress_step0 = step0
100regress_step1 = step1
101regress_step2 = step2
102regress_step3 = $(regress_step2) step3
103regress_step4 = $(regress_step3) step4
104regress_step5 = $(regress_step4) step5
105regress_step6 = $(regress_step5) step6
106regress_step7 = $(regress_step6) step7
107regress_step8 = $(regress_step7) step8
108regress_step9 = $(regress_step8) step9
109regress_stepA = $(regress_step9) stepA
110
dca6b585 111test_EXCLUDES += test^bash^step5 # never completes at 10,000
4eb88ef2 112test_EXCLUDES += test^logo^step5 # too slow for 10,000
dca6b585
JM
113test_EXCLUDES += test^make^step5 # no TCO capability (iteration or recursion)
114test_EXCLUDES += test^mal^step5 # host impl dependent
115test_EXCLUDES += test^matlab^step5 # never completes at 10,000
8119e744
JM
116test_EXCLUDES += test^plpgsql^step5 # too slow for 10,000
117test_EXCLUDES += test^plsql^step5 # too slow for 10,000
f6146aef 118test_EXCLUDES += test^powershell^step5 # too slow for 10,000
dca6b585
JM
119
120perf_EXCLUDES = mal # TODO: fix this
31690700 121
bcfd8b70 122dist_EXCLUDES += mal
5245b079 123# TODO: still need to implement dist
bcfd8b70 124dist_EXCLUDES += guile io julia matlab swift
31690700
JM
125
126#
127# Utility functions
128#
129
32d0a1cf
JM
130haxe_STEP_TO_PROG_neko = haxe/$($(1)).n
131haxe_STEP_TO_PROG_python = haxe/$($(1)).py
132haxe_STEP_TO_PROG_cpp = haxe/cpp/$($(1))
133haxe_STEP_TO_PROG_js = haxe/$($(1)).js
134
20e8dea0 135opt_DEFERRABLE = $(if $(strip $(DEFERRABLE)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(DEFERRABLE)),--deferrable,--no-deferrable),--no-deferrable)
46e25689 136opt_OPTIONAL = $(if $(strip $(OPTIONAL)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(OPTIONAL)),--optional,--no-optional),--no-optional)
32d0a1cf 137
17180e85
JM
138# Return list of test files for a given step. If REGRESS is set then
139# test files will include step 2 tests through tests for the step
140# being tested.
141STEP_TEST_FILES = $(strip $(wildcard \
142 $(foreach s,$(if $(strip $(REGRESS)),$(regress_$(2)),$(2)),\
143 $(1)/tests/$($(s)).mal tests/$($(s)).mal)))
31690700 144
17180e85 145# Map of step (e.g. "step8") to executable file for that step
99be41df 146ada_STEP_TO_PROG = ada/$($(1))
3b7ef8c7 147awk_STEP_TO_PROG = awk/$($(1)).awk
db4c329a
JM
148bash_STEP_TO_PROG = bash/$($(1)).sh
149c_STEP_TO_PROG = c/$($(1))
f82cb965 150d_STEP_TO_PROG = d/$($(1))
4abd73a6 151chuck_STEP_TO_PROG = chuck/$($(1)).ck
20e8dea0 152clojure_STEP_TO_PROG = clojure/target/$($(1)).jar
891c3f3b 153coffee_STEP_TO_PROG = coffee/$($(1)).coffee
1c7168cf 154common_lisp_STEP_TO_PROG = common_lisp/$($(1)).lisp
9ddaa0b9 155cpp_STEP_TO_PROG = cpp/$($(1))
86fe6314 156crystal_STEP_TO_PROG = crystal/$($(1))
db4c329a 157cs_STEP_TO_PROG = cs/$($(1)).exe
ae28e856 158elisp_STEP_TO_PROG = elisp/$($(1)).el
51c2c1fe 159elixir_STEP_TO_PROG = elixir/lib/mix/tasks/$($(1)).ex
2cc3804b 160erlang_STEP_TO_PROG = erlang/$($(1))
4eb71990 161es6_STEP_TO_PROG = es6/build/$($(1)).js
199b1ce7 162factor_STEP_TO_PROG = factor/$($(1))/$($(1)).factor
59038a10 163forth_STEP_TO_PROG = forth/$($(1)).fs
1c358979 164fsharp_STEP_TO_PROG = fsharp/$($(1)).exe
69b4abd6 165go_STEP_TO_PROG = go/$($(1))
a9cd6543 166groovy_STEP_TO_PROG = groovy/$($(1)).groovy
36e287b5 167java_STEP_TO_PROG = java/target/classes/mal/$($(1)).class
b76aa73b 168haskell_STEP_TO_PROG = haskell/$($(1))
32d0a1cf 169haxe_STEP_TO_PROG = $(haxe_STEP_TO_PROG_$(HAXE_MODE))
7511317b 170io_STEP_TO_PROG = io/$($(1)).io
a23e0cdb 171julia_STEP_TO_PROG = julia/$($(1)).jl
db4c329a 172js_STEP_TO_PROG = js/$($(1)).js
53c2ea70 173kotlin_STEP_TO_PROG = kotlin/$($(1)).jar
9d42904e 174lua_STEP_TO_PROG = lua/$($(1)).lua
db4c329a
JM
175make_STEP_TO_PROG = make/$($(1)).mk
176mal_STEP_TO_PROG = mal/$($(1)).mal
59d10e1b 177ocaml_STEP_TO_PROG = ocaml/$($(1))
9a54ea18 178matlab_STEP_TO_PROG = matlab/$($(1)).m
c1fe72ae 179miniMAL_STEP_TO_PROG = miniMAL/$($(1)).json
dbac60df 180nim_STEP_TO_PROG = nim/$($(1))
2faae94c 181objc_STEP_TO_PROG = objc/$($(1))
0067158f 182objpascal_STEP_TO_PROG = objpascal/$($(1))
b5dedee0 183perl_STEP_TO_PROG = perl/$($(1)).pl
a7081401 184perl6_STEP_TO_PROG = perl6/$($(1)).pl
db4c329a 185php_STEP_TO_PROG = php/$($(1)).php
adc5b4fb 186plpgsql_STEP_TO_PROG = plpgsql/$($(1)).sql
97df14cd 187plsql_STEP_TO_PROG = plsql/$($(1)).sql
d7d197f9 188powershell_STEP_TO_PROG = powershell/$($(1)).ps1
db4c329a
JM
189ps_STEP_TO_PROG = ps/$($(1)).ps
190python_STEP_TO_PROG = python/$($(1)).py
4d1456b9 191r_STEP_TO_PROG = r/$($(1)).r
f5223195 192racket_STEP_TO_PROG = racket/$($(1)).rkt
80320efc 193rpython_STEP_TO_PROG = rpython/$($(1))
db4c329a 194ruby_STEP_TO_PROG = ruby/$($(1)).rb
434516e0 195rust_STEP_TO_PROG = rust/target/release/$($(1))
37a33ac7 196scala_STEP_TO_PROG = scala/target/scala-2.11/classes/$($(1)).class
2539e6af 197swift_STEP_TO_PROG = swift/$($(1))
0eace3df 198swift3_STEP_TO_PROG = swift3/$($(1))
54d9903c 199tcl_STEP_TO_PROG = tcl/$($(1)).tcl
ee7cd585 200vb_STEP_TO_PROG = vb/$($(1)).exe
36e91db4 201vhdl_STEP_TO_PROG = vhdl/$($(1))
50a964ce 202vimscript_STEP_TO_PROG = vimscript/$($(1)).vim
5eb1f5cb 203guile_STEP_TO_PROG = guile/$($(1)).scm
db4c329a 204
db4c329a 205
c4033aab
JM
206# Needed some argument munging
207COMMA = ,
208noop =
209SPACE = $(noop) $(noop)
d1596ac2 210export FACTOR_ROOTS := .
db4c329a 211
4959b19d
JM
212# DOCKERIZE utility functions
213lc = $(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))))))))))))))))))))))))))
214impl_to_image = kanaka/mal-test-$(call lc,$(1))
215
216actual_impl = $(if $(filter mal,$(1)),$(MAL_IMPL),$(1))
217
20e8dea0
JM
218# Takes impl
219# Returns nothing if DOCKERIZE is not set, otherwise returns the
220# docker prefix necessary to run make within the docker environment
221# for this impl
4959b19d 222get_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)) ,)
db4c329a 223
20e8dea0
JM
224# Takes impl and step arguments
225# Returns a command prefix (docker command and environment variables)
226# necessary to launch the given impl and step
227get_run_prefix = $(strip $(if $(strip $(DOCKERIZE)),\
2b52a2a5 228 docker run -e STEP=$($2) -e MAL_IMPL=$(MAL_IMPL) \
20e8dea0
JM
229 -it --rm -u $(shell id -u) \
230 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
231 -w /mal/$(call actual_impl,$(1)) \
232 $(if $(filter haxe,$(1)),-e HAXE_MODE=$(HAXE_MODE),) \
233 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
234 $(foreach env,$(3),-e $(env)) \
235 $(call impl_to_image,$(call actual_impl,$(1))) \
236 ,\
2b52a2a5 237 env STEP=$($2) MAL_IMPL=$(MAL_IMPL) \
20e8dea0
JM
238 $(if $(filter haxe,$(1)),HAXE_MODE=$(HAXE_MODE),) \
239 $(if $(filter factor,$(1)),FACTOR_ROOTS=$(FACTOR_ROOTS),) \
240 $(3)))
241
242# Takes impl and step
243# Returns the runtest command prefix (with runtest options) for testing the given step
244get_runtest_cmd = $(call get_run_prefix,$(1),$(2),$(if $(filter cs fsharp tcl vb,$(1)),RAW=1,)) \
553a0950 245 ../runtest.py $(opt_DEFERRABLE) $(opt_OPTIONAL) $(call $(1)_TEST_OPTS) $(TEST_OPTS)
20e8dea0
JM
246
247# Takes impl and step
248# Returns the runtest command prefix (with runtest options) for testing the given step
249get_argvtest_cmd = $(call get_run_prefix,$(1),$(2)) ../run_argv_test.sh
31690700 250
50a964ce
DM
251vimscript_TEST_OPTS = --test-timeout 30
252ifeq ($(MAL_IMPL),vimscript)
253mal_TEST_OPTS = --start-timeout 60 --test-timeout 180
f6146aef
JM
254else ifeq ($(MAL_IMPL),powershell)
255mal_TEST_OPTS = --start-timeout 60 --test-timeout 180
50a964ce 256endif
31690700
JM
257
258# Derived lists
259STEPS = $(sort $(filter step%,$(.VARIABLES)))
8569b2af
JM
260DO_IMPLS = $(filter-out $(SKIP_IMPLS),$(IMPLS))
261IMPL_TESTS = $(foreach impl,$(DO_IMPLS),test^$(impl))
31690700 262STEP_TESTS = $(foreach step,$(STEPS),test^$(step))
dca6b585 263ALL_TESTS = $(filter-out $(test_EXCLUDES),\
31690700 264 $(strip $(sort \
8569b2af 265 $(foreach impl,$(DO_IMPLS),\
31690700
JM
266 $(foreach step,$(STEPS),test^$(impl)^$(step))))))
267
cf1d3eae
JM
268DOCKER_BUILD = $(foreach impl,$(DO_IMPLS),docker-build^$(impl))
269
dca6b585 270IMPL_PERF = $(foreach impl,$(filter-out $(perf_EXCLUDES),$(DO_IMPLS)),perf^$(impl))
db4c329a 271
854cf2a6
DM
272IMPL_REPL = $(foreach impl,$(DO_IMPLS),repl^$(impl))
273ALL_REPL = $(strip $(sort \
274 $(foreach impl,$(DO_IMPLS),\
275 $(foreach step,$(STEPS),repl^$(impl)^$(step)))))
db4c329a 276
31690700
JM
277#
278# Build rules
279#
280
4fc7a281 281# Build a program in an implementation directory
f045aba1
JM
282# Make sure we always try and build first because the dependencies are
283# encoded in the implementation Makefile not here
284.PHONY: $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s))))
4fc7a281 285$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s)))):
f045aba1 286 $(foreach impl,$(word 1,$(subst /, ,$(@))),\
4959b19d
JM
287 $(if $(DOCKERIZE), \
288 $(call get_build_prefix,$(impl))$(MAKE) $(patsubst $(impl)/%,%,$(@)), \
289 $(MAKE) -C $(impl) $(subst $(impl)/,,$(@))))
31690700 290
5b207de7 291# Allow IMPL, and IMPL^STEP
31690700 292.SECONDEXPANSION:
5b207de7 293$(DO_IMPLS): $$(foreach s,$$(STEPS),$$(call $$(@)_STEP_TO_PROG,$$(s)))
31690700
JM
294
295.SECONDEXPANSION:
5b207de7
JM
296$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(i)^$(s))): $$(call $$(word 1,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 2,$$(subst ^, ,$$(@))))
297
298
299#
300# Test rules
301#
31690700
JM
302
303.SECONDEXPANSION:
304$(ALL_TESTS): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
305 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
306 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
d5221bcf 307 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)) && \
31690700 308 $(foreach test,$(call STEP_TEST_FILES,$(impl),$(step)),\
d5221bcf 309 echo '----------------------------------------------' && \
20e8dea0 310 echo 'Testing $@; step file: $+, test file: $(test)' && \
ba1649e4
JM
311 echo 'Running: $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run' && \
312 $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run && \
d3c401c1
DM
313 $(if $(filter tests/step6_file.mal,$(test)),\
314 echo '----------------------------------------------' && \
315 echo 'Testing ARGV of $@; step file: $+' && \
20e8dea0
JM
316 echo 'Running: $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run ' && \
317 $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run && ,\
d3c401c1 318 true && ))\
d5221bcf 319 true))
31690700 320
5b207de7 321# Allow test, tests, test^STEP, test^IMPL, and test^IMPL^STEP
31690700
JM
322test: $(ALL_TESTS)
323tests: $(ALL_TESTS)
324
5b207de7
JM
325.SECONDEXPANSION:
326$(IMPL_TESTS): $$(filter $$@^%,$$(ALL_TESTS))
31690700 327
5b207de7
JM
328.SECONDEXPANSION:
329$(STEP_TESTS): $$(foreach step,$$(subst test^,,$$@),$$(filter %^$$(step),$$(ALL_TESTS)))
31690700 330
db4c329a 331
5b207de7
JM
332#
333# Dist rules
334#
b6dc3e37
JM
335
336dist: $(IMPL_DIST)
31690700 337
712af9ef 338.SECONDEXPANSION:
b6dc3e37 339$(IMPL_DIST):
712af9ef
JM
340 @echo "----------------------------------------------"; \
341 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
b6dc3e37
JM
342 echo "Running: make -C $(impl) dist"; \
343 $(MAKE) --no-print-directory -C $(impl) dist)
344
712af9ef 345
5b207de7 346#
cf1d3eae 347# Docker build rules
5b207de7 348#
cf1d3eae
JM
349
350docker-build: $(DOCKER_BUILD)
351
352.SECONDEXPANSION:
353$(DOCKER_BUILD):
354 echo "----------------------------------------------"; \
355 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
4959b19d
JM
356 echo "Running: docker build -t $(call impl_to_image,$(impl)) .:"; \
357 cd $(impl) && docker build -t $(call impl_to_image,$(impl)) .)
db4c329a 358
5b207de7
JM
359
360#
db4c329a 361# Performance test rules
5b207de7 362#
db4c329a
JM
363
364perf: $(IMPL_PERF)
365
366.SECONDEXPANSION:
367$(IMPL_PERF):
368 @echo "----------------------------------------------"; \
369 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
370 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
371 echo "Performance test for $(impl):"; \
20e8dea0
JM
372 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal'; \
373 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal; \
374 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal'; \
375 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal; \
376 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal'; \
377 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal)
db4c329a 378
854cf2a6 379
5b207de7 380#
854cf2a6 381# REPL invocation rules
5b207de7 382#
854cf2a6
DM
383
384.SECONDEXPANSION:
385$(ALL_REPL): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
386 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
387 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
388 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
389 echo 'REPL implementation $(impl), step file: $+'; \
20e8dea0
JM
390 echo 'Running: $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run'; \
391 $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run;))
bcfd8b70 392
5b207de7
JM
393# Allow repl^IMPL^STEP and repl^IMPL (which starts REPL of stepA)
394.SECONDEXPANSION:
395$(IMPL_REPL): $$@^stepA
396
dca6b585
JM
397#
398# Utility functions
399#
400.SECONDEXPANSION:
401print-%:
402 @echo "$($(*))"
bcfd8b70 403
5b207de7 404#
bcfd8b70 405# Recursive rules (call make FOO in each subdirectory)
5b207de7 406#
bcfd8b70
JM
407
408define recur_template
409.PHONY: $(1)
410$(1): $(2)
411.SECONDEXPANSION:
412$(2):
413 @echo "----------------------------------------------"; \
414 $$(foreach impl,$$(word 2,$$(subst ^, ,$$(@))),\
4959b19d
JM
415 $$(if $$(DOCKERIZE), \
416 echo "Running: $$(call get_build_prefix,$$(impl))$$(MAKE) --no-print-directory $(1)"; \
417 $$(call get_build_prefix,$$(impl))$$(MAKE) --no-print-directory $(1), \
418 echo "Running: $$(MAKE) --no-print-directory -C $$(impl) $(1)"; \
419 $$(MAKE) --no-print-directory -C $$(impl) $(1)))
bcfd8b70
JM
420endef
421
422recur_impls_ = $(filter-out $(foreach impl,$($(1)_EXCLUDES),$(1)^$(impl)),$(foreach impl,$(IMPLS),$(1)^$(impl)))
423
424# recursive clean
425$(eval $(call recur_template,clean,$(call recur_impls_,clean)))
426
427# recursive stats
428$(eval $(call recur_template,stats,$(call recur_impls_,stats)))
429$(eval $(call recur_template,stats-lisp,$(call recur_impls_,stats-lisp)))
430
431# recursive dist
432$(eval $(call recur_template,dist,$(call recur_impls_,dist)))