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