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