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