bbc-basic: Slightly increase test timeout.
[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 'make TEST_OPTS="--opt ..." # options to pass to runtest.py'
36 @echo
37 @echo 'Other:'
38 @echo
39 @echo 'make "docker-build^IMPL" # build docker image for IMPL'
40 @echo
41 @echo 'make "docker-shell^IMPL" # start bash shell in docker image for IMPL'
42 @echo
43
44 #
45 # Command line settings
46 #
47
48 MAL_IMPL = js
49
50 # cbm or qbasic
51 basic_MODE = cbm
52 # clj or cljs (Clojure vs ClojureScript/lumo)
53 clojure_MODE = clj
54 # gdc, ldc2, or dmd
55 d_MODE = gdc
56 # python, js, cpp, or neko
57 haxe_MODE = neko
58 # octave or matlab
59 matlab_MODE = octave
60 # python, python2 or python3
61 python_MODE = python
62 # scheme (chibi, kawa, gauche, chicken, sagittarius, cyclone, foment)
63 scheme_MODE = chibi
64 # wasmtime js node wace_libc wace_fooboot
65 wasm_MODE = wasmtime
66
67 # Path to loccount for counting LOC stats
68 LOCCOUNT = loccount
69
70 # Extra options to pass to runtest.py
71 TEST_OPTS =
72
73 # Test with previous test files not just the test files for the
74 # current step. Step 0 and 1 tests are special and not included in
75 # later steps.
76 REGRESS =
77
78 DEFERRABLE=1
79 OPTIONAL=1
80
81 # Run target/rule within docker image for the implementation
82 DOCKERIZE =
83
84
85 #
86 # Implementation specific settings
87 #
88
89 IMPLS = ada ada.2 awk bash basic bbc-basic c chuck clojure coffee common-lisp cpp crystal cs d dart \
90 elisp elixir elm erlang es6 factor fantom forth fsharp go groovy gnu-smalltalk \
91 guile haskell haxe hy io java js julia kotlin livescript logo lua make mal \
92 matlab miniMAL nasm nim objc objpascal ocaml perl perl6 php picolisp plpgsql \
93 plsql powershell ps python r racket rexx rpython ruby rust scala scheme skew \
94 swift swift3 swift4 tcl ts vala vb vhdl vimscript wasm yorick
95
96 EXTENSION = .mal
97
98 step0 = step0_repl
99 step1 = step1_read_print
100 step2 = step2_eval
101 step3 = step3_env
102 step4 = step4_if_fn_do
103 step5 = step5_tco
104 step6 = step6_file
105 step7 = step7_quote
106 step8 = step8_macros
107 step9 = step9_try
108 stepA = stepA_mal
109
110 argv_STEP = step6_file
111
112
113 regress_step0 = step0
114 regress_step1 = step1
115 regress_step2 = step2
116 regress_step3 = $(regress_step2) step3
117 regress_step4 = $(regress_step3) step4
118 regress_step5 = $(regress_step4) step5
119 regress_step6 = $(regress_step5) step6
120 regress_step7 = $(regress_step6) step7
121 regress_step8 = $(regress_step7) step8
122 regress_step9 = $(regress_step8) step9
123 regress_stepA = $(regress_step9) stepA
124
125 step5_EXCLUDES += bash # never completes at 10,000
126 step5_EXCLUDES += basic # too slow, and limited to ints of 2^16
127 step5_EXCLUDES += logo # too slow for 10,000
128 step5_EXCLUDES += make # no TCO capability (iteration or recursion)
129 step5_EXCLUDES += mal # host impl dependent
130 step5_EXCLUDES += matlab # never completes at 10,000
131 step5_EXCLUDES += plpgsql # too slow for 10,000
132 step5_EXCLUDES += plsql # too slow for 10,000
133 step5_EXCLUDES += powershell # too slow for 10,000
134 step5_EXCLUDES += $(if $(filter cpp,$(haxe_MODE)),haxe,) # cpp finishes 10,000, segfaults at 100,000
135
136 dist_EXCLUDES += mal
137 # TODO: still need to implement dist
138 dist_EXCLUDES += guile io julia matlab swift
139
140
141 # Extra options to pass to runtest.py
142 bbc-basic_TEST_OPTS = --test-timeout 60
143 logo_TEST_OPTS = --start-timeout 60 --test-timeout 120
144 mal_TEST_OPTS = --start-timeout 60 --test-timeout 120
145 miniMAL_TEST_OPTS = --start-timeout 60 --test-timeout 120
146 perl6_TEST_OPTS = --test-timeout=60
147 plpgsql_TEST_OPTS = --start-timeout 60 --test-timeout 180
148 plsql_TEST_OPTS = --start-timeout 120 --test-timeout 120
149 vimscript_TEST_OPTS = --test-timeout 30
150 ifeq ($(MAL_IMPL),vimscript)
151 mal_TEST_OPTS = --start-timeout 60 --test-timeout 180
152 else ifeq ($(MAL_IMPL),powershell)
153 mal_TEST_OPTS = --start-timeout 60 --test-timeout 180
154 endif
155
156
157 #
158 # Implementation specific utility functions
159 #
160
161 basic_STEP_TO_PROG_cbm = basic/$($(1)).bas
162 basic_STEP_TO_PROG_qbasic = basic/$($(1))
163
164 clojure_STEP_TO_PROG_clj = clojure/target/$($(1)).jar
165 clojure_STEP_TO_PROG_cljs = clojure/src/mal/$($(1)).cljc
166
167 haxe_STEP_TO_PROG_neko = haxe/$($(1)).n
168 haxe_STEP_TO_PROG_python = haxe/$($(1)).py
169 haxe_STEP_TO_PROG_cpp = haxe/cpp/$($(1))
170 haxe_STEP_TO_PROG_js = haxe/$($(1)).js
171
172 scheme_STEP_TO_PROG_chibi = scheme/$($(1)).scm
173 scheme_STEP_TO_PROG_kawa = scheme/out/$($(1)).class
174 scheme_STEP_TO_PROG_gauche = scheme/$($(1)).scm
175 scheme_STEP_TO_PROG_chicken = scheme/$($(1))
176 scheme_STEP_TO_PROG_sagittarius = scheme/$($(1)).scm
177 scheme_STEP_TO_PROG_cyclone = scheme/$($(1))
178 scheme_STEP_TO_PROG_foment = scheme/$($(1)).scm
179
180 # Map of step (e.g. "step8") to executable file for that step
181 ada_STEP_TO_PROG = ada/$($(1))
182 ada.2_STEP_TO_PROG = ada.2/$($(1))
183 awk_STEP_TO_PROG = awk/$($(1)).awk
184 bash_STEP_TO_PROG = bash/$($(1)).sh
185 basic_STEP_TO_PROG = $(basic_STEP_TO_PROG_$(basic_MODE))
186 bbc-basic_STEP_TO_PROG = bbc-basic/$($(1)).bbc
187 c_STEP_TO_PROG = c/$($(1))
188 chuck_STEP_TO_PROG = chuck/$($(1)).ck
189 clojure_STEP_TO_PROG = $(clojure_STEP_TO_PROG_$(clojure_MODE))
190 coffee_STEP_TO_PROG = coffee/$($(1)).coffee
191 common-lisp_STEP_TO_PROG = common-lisp/$($(1))
192 cpp_STEP_TO_PROG = cpp/$($(1))
193 crystal_STEP_TO_PROG = crystal/$($(1))
194 cs_STEP_TO_PROG = cs/$($(1)).exe
195 d_STEP_TO_PROG = d/$($(1))
196 dart_STEP_TO_PROG = dart/$($(1)).dart
197 elisp_STEP_TO_PROG = elisp/$($(1)).el
198 elixir_STEP_TO_PROG = elixir/lib/mix/tasks/$($(1)).ex
199 elm_STEP_TO_PROG = elm/$($(1)).js
200 erlang_STEP_TO_PROG = erlang/$($(1))
201 es6_STEP_TO_PROG = es6/$($(1)).mjs
202 factor_STEP_TO_PROG = factor/$($(1))/$($(1)).factor
203 fantom_STEP_TO_PROG = fantom/lib/fan/$($(1)).pod
204 forth_STEP_TO_PROG = forth/$($(1)).fs
205 fsharp_STEP_TO_PROG = fsharp/$($(1)).exe
206 go_STEP_TO_PROG = go/$($(1))
207 groovy_STEP_TO_PROG = groovy/$($(1)).groovy
208 gnu-smalltalk_STEP_TO_PROG = gnu-smalltalk/$($(1)).st
209 guile_STEP_TO_PROG = guile/$($(1)).scm
210 haskell_STEP_TO_PROG = haskell/$($(1))
211 haxe_STEP_TO_PROG = $(haxe_STEP_TO_PROG_$(haxe_MODE))
212 hy_STEP_TO_PROG = hy/$($(1)).hy
213 io_STEP_TO_PROG = io/$($(1)).io
214 java_STEP_TO_PROG = java/target/classes/mal/$($(1)).class
215 js_STEP_TO_PROG = js/$($(1)).js
216 julia_STEP_TO_PROG = julia/$($(1)).jl
217 kotlin_STEP_TO_PROG = kotlin/$($(1)).jar
218 livescript_STEP_TO_PROG = livescript/$($(1)).js
219 logo_STEP_TO_PROG = logo/$($(1)).lg
220 lua_STEP_TO_PROG = lua/$($(1)).lua
221 make_STEP_TO_PROG = make/$($(1)).mk
222 mal_STEP_TO_PROG = mal/$($(1)).mal
223 matlab_STEP_TO_PROG = matlab/$($(1)).m
224 miniMAL_STEP_TO_PROG = miniMAL/$($(1)).json
225 nasm_STEP_TO_PROG = nasm/$($(1))
226 nim_STEP_TO_PROG = nim/$($(1))
227 objc_STEP_TO_PROG = objc/$($(1))
228 objpascal_STEP_TO_PROG = objpascal/$($(1))
229 ocaml_STEP_TO_PROG = ocaml/$($(1))
230 perl_STEP_TO_PROG = perl/$($(1)).pl
231 perl6_STEP_TO_PROG = perl6/$($(1)).pl
232 php_STEP_TO_PROG = php/$($(1)).php
233 picolisp_STEP_TO_PROG = picolisp/$($(1)).l
234 plpgsql_STEP_TO_PROG = plpgsql/$($(1)).sql
235 plsql_STEP_TO_PROG = plsql/$($(1)).sql
236 powershell_STEP_TO_PROG = powershell/$($(1)).ps1
237 ps_STEP_TO_PROG = ps/$($(1)).ps
238 python_STEP_TO_PROG = python/$($(1)).py
239 r_STEP_TO_PROG = r/$($(1)).r
240 racket_STEP_TO_PROG = racket/$($(1)).rkt
241 rexx_STEP_TO_PROG = rexx/$($(1)).rexxpp
242 rpython_STEP_TO_PROG = rpython/$($(1))
243 ruby_STEP_TO_PROG = ruby/$($(1)).rb
244 rust_STEP_TO_PROG = rust/$($(1))
245 scala_STEP_TO_PROG = scala/target/scala-2.11/classes/$($(1)).class
246 scheme_STEP_TO_PROG = $(scheme_STEP_TO_PROG_$(scheme_MODE))
247 skew_STEP_TO_PROG = skew/$($(1)).js
248 swift_STEP_TO_PROG = swift/$($(1))
249 swift3_STEP_TO_PROG = swift3/$($(1))
250 swift4_STEP_TO_PROG = swift4/$($(1))
251 tcl_STEP_TO_PROG = tcl/$($(1)).tcl
252 ts_STEP_TO_PROG = ts/$($(1)).js
253 vala_STEP_TO_PROG = vala/$($(1))
254 vb_STEP_TO_PROG = vb/$($(1)).exe
255 vhdl_STEP_TO_PROG = vhdl/$($(1))
256 vimscript_STEP_TO_PROG = vimscript/$($(1)).vim
257 wasm_STEP_TO_PROG = wasm/$($(1)).wasm
258 yorick_STEP_TO_PROG = yorick/$($(1)).i
259
260
261 #
262 # General settings and utility functions
263 #
264
265 # Needed some argument munging
266 COMMA = ,
267 noop =
268 SPACE = $(noop) $(noop)
269 export FACTOR_ROOTS := .
270
271 opt_DEFERRABLE = $(if $(strip $(DEFERRABLE)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(DEFERRABLE)),--deferrable,--no-deferrable),--no-deferrable)
272 opt_OPTIONAL = $(if $(strip $(OPTIONAL)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(OPTIONAL)),--optional,--no-optional),--no-optional)
273
274 # Return list of test files for a given step. If REGRESS is set then
275 # test files will include step 2 tests through tests for the step
276 # being tested.
277 STEP_TEST_FILES = $(strip $(wildcard \
278 $(foreach s,$(if $(strip $(REGRESS)),\
279 $(filter-out $(if $(filter $(1),$(step5_EXCLUDES)),step5,),\
280 $(regress_$(2)))\
281 ,$(2)),\
282 $(1)/tests/$($(s))$(EXTENSION) tests/$($(s))$(EXTENSION))))
283
284 # DOCKERIZE utility functions
285 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))))))))))))))))))))))))))
286 impl_to_image = kanaka/mal-test-$(call lc,$(1))
287
288 actual_impl = $(if $(filter mal,$(1)),$(MAL_IMPL),$(1))
289
290 # Takes impl
291 # Returns nothing if DOCKERIZE is not set, otherwise returns the
292 # docker prefix necessary to run make within the docker environment
293 # for this impl
294 get_build_command = $(strip $(if $(strip $(DOCKERIZE)),\
295 docker run \
296 -it --rm -u $(shell id -u) \
297 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
298 -w /mal/$(1) \
299 $(if $(strip $($(1)_MODE)),-e $(1)_MODE=$($(1)_MODE),) \
300 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
301 $(call impl_to_image,$(1)) \
302 $(MAKE) $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),) \
303 ,\
304 $(MAKE) $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),)))
305
306 # Takes impl and step args. Optional env vars and dockerize args
307 # Returns a command prefix (docker command and environment variables)
308 # necessary to launch the given impl and step
309 get_run_prefix = $(strip $(if $(strip $(DOCKERIZE) $(4)),\
310 docker run -e STEP=$($2) -e MAL_IMPL=$(MAL_IMPL) \
311 -it --rm -u $(shell id -u) \
312 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
313 -w /mal/$(call actual_impl,$(1)) \
314 $(if $(strip $($(1)_MODE)),-e $(1)_MODE=$($(1)_MODE),) \
315 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
316 $(foreach env,$(3),-e $(env)) \
317 $(call impl_to_image,$(call actual_impl,$(1))) \
318 ,\
319 env STEP=$($2) MAL_IMPL=$(MAL_IMPL) \
320 $(if $(strip $($(1)_MODE)),$(1)_MODE=$($(1)_MODE),) \
321 $(if $(filter factor,$(1)),FACTOR_ROOTS=$(FACTOR_ROOTS),) \
322 $(3)))
323
324 # Takes impl and step
325 # Returns the runtest command prefix (with runtest options) for testing the given step
326 get_runtest_cmd = $(call get_run_prefix,$(1),$(2),$(if $(filter cs fsharp tcl vb,$(1)),RAW=1,)) \
327 ../runtest.py $(opt_DEFERRABLE) $(opt_OPTIONAL) $(call $(1)_TEST_OPTS) $(TEST_OPTS)
328
329 # Takes impl and step
330 # Returns the runtest command prefix (with runtest options) for testing the given step
331 get_argvtest_cmd = $(call get_run_prefix,$(1),$(2)) ../run_argv_test.sh
332
333 # Derived lists
334 STEPS = $(sort $(filter-out %_EXCLUDES,$(filter step%,$(.VARIABLES))))
335 DO_IMPLS = $(filter-out $(SKIP_IMPLS),$(IMPLS))
336 IMPL_TESTS = $(foreach impl,$(DO_IMPLS),test^$(impl))
337 STEP_TESTS = $(foreach step,$(STEPS),test^$(step))
338 ALL_TESTS = $(filter-out $(foreach e,$(step5_EXCLUDES),test^$(e)^step5),\
339 $(strip $(sort \
340 $(foreach impl,$(DO_IMPLS),\
341 $(foreach step,$(STEPS),test^$(impl)^$(step))))))
342
343 DOCKER_BUILD = $(foreach impl,$(DO_IMPLS),docker-build^$(impl))
344
345 DOCKER_SHELL = $(foreach impl,$(DO_IMPLS),docker-shell^$(impl))
346
347 IMPL_PERF = $(foreach impl,$(filter-out $(perf_EXCLUDES),$(DO_IMPLS)),perf^$(impl))
348
349 IMPL_STATS = $(foreach impl,$(DO_IMPLS),stats^$(impl))
350
351 IMPL_REPL = $(foreach impl,$(DO_IMPLS),repl^$(impl))
352 ALL_REPL = $(strip $(sort \
353 $(foreach impl,$(DO_IMPLS),\
354 $(foreach step,$(STEPS),repl^$(impl)^$(step)))))
355
356
357 #
358 # Build rules
359 #
360
361 # Enable secondary expansion for all rules
362 .SECONDEXPANSION:
363
364 # Build a program in an implementation directory
365 # Make sure we always try and build first because the dependencies are
366 # encoded in the implementation Makefile not here
367 .PHONY: $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s))))
368 $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s)))):
369 $(foreach impl,$(word 1,$(subst /, ,$(@))),\
370 $(if $(DOCKERIZE), \
371 $(call get_build_command,$(impl)) $(patsubst $(impl)/%,%,$(@)), \
372 $(call get_build_command,$(impl)) -C $(impl) $(subst $(impl)/,,$(@))))
373
374 # Allow IMPL, and IMPL^STEP
375 $(DO_IMPLS): $$(foreach s,$$(STEPS),$$(call $$(@)_STEP_TO_PROG,$$(s)))
376
377 $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(i)^$(s))): $$(call $$(word 1,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 2,$$(subst ^, ,$$(@))))
378
379
380 #
381 # Test rules
382 #
383
384 $(ALL_TESTS): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
385 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
386 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
387 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)) && \
388 $(foreach test,$(call STEP_TEST_FILES,$(impl),$(step)),\
389 echo '----------------------------------------------' && \
390 echo 'Testing $@; step file: $+, test file: $(test)' && \
391 echo 'Running: $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run' && \
392 $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run && \
393 $(if $(filter tests/$(argv_STEP)$(EXTENSION),$(test)),\
394 echo '----------------------------------------------' && \
395 echo 'Testing ARGV of $@; step file: $+' && \
396 echo 'Running: $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run ' && \
397 $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run && ,\
398 true && ))\
399 true))
400
401 # Allow test, tests, test^STEP, test^IMPL, and test^IMPL^STEP
402 test: $(ALL_TESTS)
403 tests: $(ALL_TESTS)
404
405 $(IMPL_TESTS): $$(filter $$@^%,$$(ALL_TESTS))
406
407 $(STEP_TESTS): $$(foreach step,$$(subst test^,,$$@),$$(filter %^$$(step),$$(ALL_TESTS)))
408
409
410 #
411 # Docker build rules
412 #
413
414 docker-build: $(DOCKER_BUILD)
415
416 $(DOCKER_BUILD):
417 @echo "----------------------------------------------"; \
418 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
419 echo "Running: docker build -t $(call impl_to_image,$(impl)) .:"; \
420 cd $(impl) && docker build -t $(call impl_to_image,$(impl)) .)
421
422 #
423 # Docker shell rules
424 #
425
426 $(DOCKER_SHELL):
427 @echo "----------------------------------------------"; \
428 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
429 echo "Running: $(call get_run_prefix,$(impl),stepA,,dockerize) bash"; \
430 $(call get_run_prefix,$(impl),stepA,,dockerize) bash)
431
432
433 #
434 # Performance test rules
435 #
436
437 perf: $(IMPL_PERF)
438
439 $(IMPL_PERF):
440 @echo "----------------------------------------------"; \
441 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
442 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
443 echo "Performance test for $(impl):"; \
444 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal'; \
445 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal; \
446 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal'; \
447 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal; \
448 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal'; \
449 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal)
450
451
452 #
453 # REPL invocation rules
454 #
455
456 $(ALL_REPL): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
457 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
458 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
459 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
460 echo 'REPL implementation $(impl), step file: $+'; \
461 echo 'Running: $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run $(RUN_ARGS)'; \
462 $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run $(RUN_ARGS);))
463
464 # Allow repl^IMPL^STEP and repl^IMPL (which starts REPL of stepA)
465 $(IMPL_REPL): $$@^stepA
466
467 #
468 # Stats test rules
469 #
470
471 # For a concise summary:
472 # make stats | egrep -A1 "^Stats for|^all" | egrep -v "^all|^--"
473 stats: $(IMPL_STATS)
474
475 $(IMPL_STATS):
476 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
477 echo "Stats for $(impl):"; \
478 $(LOCCOUNT) -x "Makefile|node_modules" $(impl))
479
480 #
481 # Utility functions
482 #
483 print-%:
484 @echo "$($(*))"
485
486 #
487 # Recursive rules (call make FOO in each subdirectory)
488 #
489
490 define recur_template
491 .PHONY: $(1)
492 $(1): $(2)
493 $(2):
494 @echo "----------------------------------------------"; \
495 $$(foreach impl,$$(word 2,$$(subst ^, ,$$(@))),\
496 $$(if $$(DOCKERIZE), \
497 echo "Running: $$(call get_build_command,$$(impl)) --no-print-directory $(1)"; \
498 $$(call get_build_command,$$(impl)) --no-print-directory $(1), \
499 echo "Running: $$(call get_build_command,$$(impl)) --no-print-directory -C $$(impl) $(1)"; \
500 $$(call get_build_command,$$(impl)) --no-print-directory -C $$(impl) $(1)))
501 endef
502
503 recur_impls_ = $(filter-out $(foreach impl,$($(1)_EXCLUDES),$(1)^$(impl)),$(foreach impl,$(IMPLS),$(1)^$(impl)))
504
505 # recursive clean
506 $(eval $(call recur_template,clean,$(call recur_impls_,clean)))
507
508 # recursive dist
509 $(eval $(call recur_template,dist,$(call recur_impls_,dist)))