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