plpgsql: IO using stream table. Add keywords.
[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
337c8031
JM
60# Extra implementation specific options to pass to runtest.py
61mal_TEST_OPTS = --start-timeout 60 --test-timeout 120
f2b067cb
JM
62miniMAL_TEST_OPTS = --start-timeout 60 --test-timeout 120
63
64DOCKERIZE=
337c8031 65
5b207de7
JM
66# Run target/rule within docker image for the implementation
67DOCKERIZE =
a05f7822 68
31690700
JM
69#
70# Settings
71#
72
adc03a1a 73IMPLS = ada awk bash c d clojure coffee cpp crystal cs erlang elisp \
0067158f
JM
74 elixir es6 factor forth fsharp go groovy guile haskell haxe \
75 io java julia js kotlin lua make mal ocaml matlab miniMAL \
adc5b4fb
JM
76 nim objc objpascal perl php plpgsql ps python r racket \
77 rpython ruby rust scala swift swift3 tcl vb vimscript
31690700
JM
78
79step0 = step0_repl
80step1 = step1_read_print
81step2 = step2_eval
82step3 = step3_env
83step4 = step4_if_fn_do
84step5 = step5_tco
85step6 = step6_file
86step7 = step7_quote
87step8 = step8_macros
01c97316 88step9 = step9_try
90f618cb 89stepA = stepA_mal
31690700 90
17180e85
JM
91regress_step0 = step0
92regress_step1 = step1
93regress_step2 = step2
94regress_step3 = $(regress_step2) step3
95regress_step4 = $(regress_step3) step4
96regress_step5 = $(regress_step4) step5
97regress_step6 = $(regress_step5) step6
98regress_step7 = $(regress_step6) step7
99regress_step8 = $(regress_step7) step8
100regress_step9 = $(regress_step8) step9
101regress_stepA = $(regress_step9) stepA
102
dca6b585
JM
103test_EXCLUDES += test^bash^step5 # never completes at 10,000
104test_EXCLUDES += test^make^step5 # no TCO capability (iteration or recursion)
105test_EXCLUDES += test^mal^step5 # host impl dependent
106test_EXCLUDES += test^matlab^step5 # never completes at 10,000
5340418b 107test_EXCLUDES += test^plpgsql^step5 # too slow for 10,000
dca6b585
JM
108
109perf_EXCLUDES = mal # TODO: fix this
31690700 110
bcfd8b70 111dist_EXCLUDES += mal
5245b079 112# TODO: still need to implement dist
bcfd8b70 113dist_EXCLUDES += guile io julia matlab swift
31690700
JM
114
115#
116# Utility functions
117#
118
47699629
JM
119MATLAB = matlab -nodisplay -nosplash -nodesktop -nojvm -r
120OCTAVE = octave --no-gui -q --traditional --eval
121matlab_args = $(subst $(SPACE),$(COMMA),$(foreach x,$(strip $(1)),'$(x)'))
122matlab_cmd = $(if $(strip $(USE_MATLAB)),$(MATLAB),$(OCTAVE))
123
32d0a1cf
JM
124haxe_STEP_TO_PROG_neko = haxe/$($(1)).n
125haxe_STEP_TO_PROG_python = haxe/$($(1)).py
126haxe_STEP_TO_PROG_cpp = haxe/cpp/$($(1))
127haxe_STEP_TO_PROG_js = haxe/$($(1)).js
128
129haxe_RUNSTEP_neko = neko ../$(2) $(3)
130haxe_RUNSTEP_python = python3 ../$(2) $(3)
131haxe_RUNSTEP_cpp = ../$(2) $(3)
132haxe_RUNSTEP_js = node ../$(2) $(3)
133
17180e85
JM
134# Return list of test files for a given step. If REGRESS is set then
135# test files will include step 2 tests through tests for the step
136# being tested.
137STEP_TEST_FILES = $(strip $(wildcard \
138 $(foreach s,$(if $(strip $(REGRESS)),$(regress_$(2)),$(2)),\
139 $(1)/tests/$($(s)).mal tests/$($(s)).mal)))
31690700 140
17180e85 141# Map of step (e.g. "step8") to executable file for that step
99be41df 142ada_STEP_TO_PROG = ada/$($(1))
3b7ef8c7 143awk_STEP_TO_PROG = awk/$($(1)).awk
db4c329a
JM
144bash_STEP_TO_PROG = bash/$($(1)).sh
145c_STEP_TO_PROG = c/$($(1))
f82cb965 146d_STEP_TO_PROG = d/$($(1))
31690700 147clojure_STEP_TO_PROG = clojure/src/$($(1)).clj
891c3f3b 148coffee_STEP_TO_PROG = coffee/$($(1)).coffee
9ddaa0b9 149cpp_STEP_TO_PROG = cpp/$($(1))
86fe6314 150crystal_STEP_TO_PROG = crystal/$($(1))
db4c329a 151cs_STEP_TO_PROG = cs/$($(1)).exe
ae28e856 152elisp_STEP_TO_PROG = elisp/$($(1)).el
51c2c1fe 153elixir_STEP_TO_PROG = elixir/lib/mix/tasks/$($(1)).ex
2cc3804b 154erlang_STEP_TO_PROG = erlang/$($(1))
4eb71990 155es6_STEP_TO_PROG = es6/build/$($(1)).js
199b1ce7 156factor_STEP_TO_PROG = factor/$($(1))/$($(1)).factor
59038a10 157forth_STEP_TO_PROG = forth/$($(1)).fs
1c358979 158fsharp_STEP_TO_PROG = fsharp/$($(1)).exe
69b4abd6 159go_STEP_TO_PROG = go/$($(1))
a9cd6543 160groovy_STEP_TO_PROG = groovy/$($(1)).groovy
36e287b5 161java_STEP_TO_PROG = java/target/classes/mal/$($(1)).class
b76aa73b 162haskell_STEP_TO_PROG = haskell/$($(1))
32d0a1cf 163haxe_STEP_TO_PROG = $(haxe_STEP_TO_PROG_$(HAXE_MODE))
7511317b 164io_STEP_TO_PROG = io/$($(1)).io
a23e0cdb 165julia_STEP_TO_PROG = julia/$($(1)).jl
db4c329a 166js_STEP_TO_PROG = js/$($(1)).js
53c2ea70 167kotlin_STEP_TO_PROG = kotlin/$($(1)).jar
9d42904e 168lua_STEP_TO_PROG = lua/$($(1)).lua
db4c329a
JM
169make_STEP_TO_PROG = make/$($(1)).mk
170mal_STEP_TO_PROG = mal/$($(1)).mal
59d10e1b 171ocaml_STEP_TO_PROG = ocaml/$($(1))
9a54ea18 172matlab_STEP_TO_PROG = matlab/$($(1)).m
c1fe72ae 173miniMAL_STEP_TO_PROG = miniMAL/$($(1)).json
dbac60df 174nim_STEP_TO_PROG = nim/$($(1))
2faae94c 175objc_STEP_TO_PROG = objc/$($(1))
0067158f 176objpascal_STEP_TO_PROG = objpascal/$($(1))
b5dedee0 177perl_STEP_TO_PROG = perl/$($(1)).pl
db4c329a 178php_STEP_TO_PROG = php/$($(1)).php
adc5b4fb 179plpgsql_STEP_TO_PROG = plpgsql/$($(1)).sql
db4c329a
JM
180ps_STEP_TO_PROG = ps/$($(1)).ps
181python_STEP_TO_PROG = python/$($(1)).py
4d1456b9 182r_STEP_TO_PROG = r/$($(1)).r
f5223195 183racket_STEP_TO_PROG = racket/$($(1)).rkt
80320efc 184rpython_STEP_TO_PROG = rpython/$($(1))
db4c329a 185ruby_STEP_TO_PROG = ruby/$($(1)).rb
434516e0 186rust_STEP_TO_PROG = rust/target/release/$($(1))
821930db 187scala_STEP_TO_PROG = scala/$($(1)).scala
2539e6af 188swift_STEP_TO_PROG = swift/$($(1))
0eace3df 189swift3_STEP_TO_PROG = swift3/$($(1))
54d9903c 190tcl_STEP_TO_PROG = tcl/$($(1)).tcl
ee7cd585 191vb_STEP_TO_PROG = vb/$($(1)).exe
50a964ce 192vimscript_STEP_TO_PROG = vimscript/$($(1)).vim
5eb1f5cb 193guile_STEP_TO_PROG = guile/$($(1)).scm
db4c329a 194
db4c329a 195
c4033aab
JM
196# Needed some argument munging
197COMMA = ,
198noop =
199SPACE = $(noop) $(noop)
d1596ac2 200export FACTOR_ROOTS := .
db4c329a 201
17180e85
JM
202# Macro for running a step:
203# $(1): step (e.g. "stepA")
204# $(2): program for step (e.g. result of *_STEP_TO_PROG
205# $(3): program arguments
99be41df 206ada_RUNSTEP = ../$(2) $(3)
3b7ef8c7 207awk_RUNSTEP = awk -O -f ../$(2) $(3)
db4c329a
JM
208bash_RUNSTEP = bash ../$(2) $(3)
209c_RUNSTEP = ../$(2) $(3)
f82cb965 210d_RUNSTEP = ../$(2) $(3)
db4c329a 211clojure_RUNSTEP = lein with-profile +$(1) trampoline run $(3)
891c3f3b 212coffee_RUNSTEP = coffee ../$(2) $(3)
9ddaa0b9 213cpp_RUNSTEP = ../$(2) $(3)
86fe6314 214crystal_RUNSTEP = ../$(2) $(3)
db4c329a 215cs_RUNSTEP = mono ../$(2) --raw $(3)
ae28e856 216elisp_RUNSTEP = emacs -Q --batch --load ../$(2) $(3)
df2ca97b 217elixir_RUNSTEP = mix $(notdir $(basename $(2))) $(3)
2cc3804b 218erlang_RUNSTEP = ../$(2) $(3)
4eb71990 219es6_RUNSTEP = node ../$(2) $(3)
389c9b8a 220factor_RUNSTEP = factor ../$(2) $(3)
59038a10 221forth_RUNSTEP = gforth ../$(2) $(3)
1c358979 222fsharp_RUNSTEP = mono ../$(2) --raw $(3)
69b4abd6 223go_RUNSTEP = ../$(2) $(3)
a9cd6543 224groovy_RUNSTEP = groovy ../$(2) $(3)
5245b079
JM
225# needs TERM=dumb to work with readline
226guile_RUNSTEP = guile --no-auto-compile -L ../guile ../$(2) $(3)
b76aa73b 227haskell_RUNSTEP = ../$(2) $(3)
6c4c14bd 228haxe_RUNSTEP = python3 ../$(2) $(3)
32d0a1cf 229haxe_RUNSTEP = $(haxe_RUNSTEP_$(HAXE_MODE))
7511317b 230io_RUNSTEP = io ../$(2) $(3)
798206ac 231java_RUNSTEP = mvn -quiet exec:java -Dexec.mainClass="mal.$($(1))" $(if $(3), -Dexec.args="$(3)",)
a23e0cdb 232julia_RUNSTEP = ../$(2) $(3)
db4c329a 233js_RUNSTEP = node ../$(2) $(3)
53c2ea70 234kotlin_RUNSTEP = java -jar ../$(2) $(3)
798206ac 235lua_RUNSTEP = ../$(2) $(3)
db4c329a 236make_RUNSTEP = make -f ../$(2) $(3)
922d4c3b 237mal_RUNSTEP = $(call $(MAL_IMPL)_RUNSTEP,stepA,$(call $(MAL_IMPL)_STEP_TO_PROG,stepA),../$(2),") #"
59d10e1b 238ocaml_RUNSTEP = ../$(2) $(3)
47699629 239matlab_RUNSTEP = $(matlab_cmd) "$($(1))($(call matlab_args,$(3)));quit;"
c1fe72ae 240miniMAL_RUNSTEP = miniMAL ../$(2) $(3)
dbac60df 241nim_RUNSTEP = ../$(2) $(3)
2faae94c 242objc_RUNSTEP = ../$(2) $(3)
0067158f 243objpascal_RUNSTEP = ../$(2) $(3)
82acd3de 244perl_RUNSTEP = perl ../$(2) $(3)
db4c329a 245php_RUNSTEP = php ../$(2) $(3)
adc5b4fb 246plpgsql_RUNSTEP = ./wrap.sh ../$(2) $(3)
406761e7 247ps_RUNSTEP = gs -q -I./ -dNODISPLAY -- ../$(2) $(3)
db4c329a 248python_RUNSTEP = $(PYTHON) ../$(2) $(3)
4d1456b9 249r_RUNSTEP = Rscript ../$(2) $(3)
f5223195 250racket_RUNSTEP = ../$(2) $(3)
80320efc 251rpython_RUNSTEP = ../$(2) $(3)
db4c329a 252ruby_RUNSTEP = ruby ../$(2) $(3)
abdd56eb 253rust_RUNSTEP = ../$(2) $(3)
821930db 254scala_RUNSTEP = sbt 'run-main $($(1))$(if $(3), $(3),)'
2539e6af 255swift_RUNSTEP = ../$(2) $(3)
0eace3df 256swift3_RUNSTEP = ../$(2) $(3)
576ef370 257tcl_RUNSTEP = tclsh ../$(2) --raw $(3)
ee7cd585 258vb_RUNSTEP = mono ../$(2) --raw $(3)
50a964ce 259vimscript_RUNSTEP = ./run_vimscript.sh ../$(2) $(3)
db4c329a 260
31690700 261
4959b19d
JM
262# DOCKERIZE utility functions
263lc = $(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))))))))))))))))))))))))))
264impl_to_image = kanaka/mal-test-$(call lc,$(1))
265
266actual_impl = $(if $(filter mal,$(1)),$(MAL_IMPL),$(1))
267
268get_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)) ,)
269get_run_prefix = $(if $(strip $(DOCKERIZE)),docker run -it --rm -u $(shell id -u) -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal -w /mal/$(call actual_impl,$(1)) $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) $(call impl_to_image,$(call actual_impl,$(1))) ,)
db4c329a 270
31690700 271
50a964ce
DM
272vimscript_TEST_OPTS = --test-timeout 30
273ifeq ($(MAL_IMPL),vimscript)
274mal_TEST_OPTS = --start-timeout 60 --test-timeout 180
275endif
31690700
JM
276
277# Derived lists
278STEPS = $(sort $(filter step%,$(.VARIABLES)))
8569b2af
JM
279DO_IMPLS = $(filter-out $(SKIP_IMPLS),$(IMPLS))
280IMPL_TESTS = $(foreach impl,$(DO_IMPLS),test^$(impl))
31690700 281STEP_TESTS = $(foreach step,$(STEPS),test^$(step))
dca6b585 282ALL_TESTS = $(filter-out $(test_EXCLUDES),\
31690700 283 $(strip $(sort \
8569b2af 284 $(foreach impl,$(DO_IMPLS),\
31690700
JM
285 $(foreach step,$(STEPS),test^$(impl)^$(step))))))
286
cf1d3eae
JM
287DOCKER_BUILD = $(foreach impl,$(DO_IMPLS),docker-build^$(impl))
288
dca6b585 289IMPL_PERF = $(foreach impl,$(filter-out $(perf_EXCLUDES),$(DO_IMPLS)),perf^$(impl))
db4c329a 290
854cf2a6
DM
291IMPL_REPL = $(foreach impl,$(DO_IMPLS),repl^$(impl))
292ALL_REPL = $(strip $(sort \
293 $(foreach impl,$(DO_IMPLS),\
294 $(foreach step,$(STEPS),repl^$(impl)^$(step)))))
db4c329a 295
31690700
JM
296#
297# Build rules
298#
299
4fc7a281 300# Build a program in an implementation directory
f045aba1
JM
301# Make sure we always try and build first because the dependencies are
302# encoded in the implementation Makefile not here
303.PHONY: $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s))))
4fc7a281 304$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s)))):
f045aba1 305 $(foreach impl,$(word 1,$(subst /, ,$(@))),\
4959b19d
JM
306 $(if $(DOCKERIZE), \
307 $(call get_build_prefix,$(impl))$(MAKE) $(patsubst $(impl)/%,%,$(@)), \
308 $(MAKE) -C $(impl) $(subst $(impl)/,,$(@))))
31690700 309
5b207de7 310# Allow IMPL, and IMPL^STEP
31690700 311.SECONDEXPANSION:
5b207de7 312$(DO_IMPLS): $$(foreach s,$$(STEPS),$$(call $$(@)_STEP_TO_PROG,$$(s)))
31690700
JM
313
314.SECONDEXPANSION:
5b207de7
JM
315$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(i)^$(s))): $$(call $$(word 1,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 2,$$(subst ^, ,$$(@))))
316
317
318#
319# Test rules
320#
31690700
JM
321
322.SECONDEXPANSION:
323$(ALL_TESTS): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
324 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
325 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
d5221bcf 326 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)) && \
31690700 327 $(foreach test,$(call STEP_TEST_FILES,$(impl),$(step)),\
d5221bcf
DM
328 echo '----------------------------------------------' && \
329 echo 'Testing $@, step file: $+, test file: $(test)' && \
330 echo 'Running: $(call get_run_prefix,$(impl))../runtest.py $(TEST_OPTS) $(call $(impl)_TEST_OPTS) ../$(test) -- $(call $(impl)_RUNSTEP,$(step),$(+))' && \
331 $(call get_run_prefix,$(impl))../runtest.py $(TEST_OPTS) $(call $(impl)_TEST_OPTS) ../$(test) -- $(call $(impl)_RUNSTEP,$(step),$(+)) &&) \
332 true))
31690700 333
5b207de7 334# Allow test, tests, test^STEP, test^IMPL, and test^IMPL^STEP
31690700
JM
335test: $(ALL_TESTS)
336tests: $(ALL_TESTS)
337
5b207de7
JM
338.SECONDEXPANSION:
339$(IMPL_TESTS): $$(filter $$@^%,$$(ALL_TESTS))
31690700 340
5b207de7
JM
341.SECONDEXPANSION:
342$(STEP_TESTS): $$(foreach step,$$(subst test^,,$$@),$$(filter %^$$(step),$$(ALL_TESTS)))
31690700 343
db4c329a 344
5b207de7
JM
345#
346# Dist rules
347#
b6dc3e37
JM
348
349dist: $(IMPL_DIST)
31690700 350
712af9ef 351.SECONDEXPANSION:
b6dc3e37 352$(IMPL_DIST):
712af9ef
JM
353 @echo "----------------------------------------------"; \
354 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
b6dc3e37
JM
355 echo "Running: make -C $(impl) dist"; \
356 $(MAKE) --no-print-directory -C $(impl) dist)
357
712af9ef 358
5b207de7 359#
cf1d3eae 360# Docker build rules
5b207de7 361#
cf1d3eae
JM
362
363docker-build: $(DOCKER_BUILD)
364
365.SECONDEXPANSION:
366$(DOCKER_BUILD):
367 echo "----------------------------------------------"; \
368 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
4959b19d
JM
369 echo "Running: docker build -t $(call impl_to_image,$(impl)) .:"; \
370 cd $(impl) && docker build -t $(call impl_to_image,$(impl)) .)
db4c329a 371
5b207de7
JM
372
373#
db4c329a 374# Performance test rules
5b207de7 375#
db4c329a
JM
376
377perf: $(IMPL_PERF)
378
379.SECONDEXPANSION:
380$(IMPL_PERF):
381 @echo "----------------------------------------------"; \
382 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
383 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
384 echo "Performance test for $(impl):"; \
4959b19d
JM
385 echo 'Running: $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf1.mal)'; \
386 $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf1.mal); \
db4c329a 387 echo 'Running: $(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf2.mal)'; \
4959b19d 388 $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf2.mal); \
699f0ad2 389 echo 'Running: $(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf3.mal)'; \
4959b19d 390 $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,stepA,$(call $(impl)_STEP_TO_PROG,stepA),../tests/perf3.mal))
db4c329a 391
854cf2a6 392
5b207de7 393#
854cf2a6 394# REPL invocation rules
5b207de7 395#
854cf2a6
DM
396
397.SECONDEXPANSION:
398$(ALL_REPL): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
399 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
400 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
401 cd $(if $(filter mal,$(impl)),$(MAL_IMPL),$(impl)); \
402 echo 'REPL implementation $(impl), step file: $+'; \
4959b19d
JM
403 echo 'Running: $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,$(step),$(+))'; \
404 $(call get_run_prefix,$(impl))$(call $(impl)_RUNSTEP,$(step),$(+));))
bcfd8b70 405
5b207de7
JM
406# Allow repl^IMPL^STEP and repl^IMPL (which starts REPL of stepA)
407.SECONDEXPANSION:
408$(IMPL_REPL): $$@^stepA
409
dca6b585
JM
410#
411# Utility functions
412#
413.SECONDEXPANSION:
414print-%:
415 @echo "$($(*))"
bcfd8b70 416
5b207de7 417#
bcfd8b70 418# Recursive rules (call make FOO in each subdirectory)
5b207de7 419#
bcfd8b70
JM
420
421define recur_template
422.PHONY: $(1)
423$(1): $(2)
424.SECONDEXPANSION:
425$(2):
426 @echo "----------------------------------------------"; \
427 $$(foreach impl,$$(word 2,$$(subst ^, ,$$(@))),\
4959b19d
JM
428 $$(if $$(DOCKERIZE), \
429 echo "Running: $$(call get_build_prefix,$$(impl))$$(MAKE) --no-print-directory $(1)"; \
430 $$(call get_build_prefix,$$(impl))$$(MAKE) --no-print-directory $(1), \
431 echo "Running: $$(MAKE) --no-print-directory -C $$(impl) $(1)"; \
432 $$(MAKE) --no-print-directory -C $$(impl) $(1)))
bcfd8b70
JM
433endef
434
435recur_impls_ = $(filter-out $(foreach impl,$($(1)_EXCLUDES),$(1)^$(impl)),$(foreach impl,$(IMPLS),$(1)^$(impl)))
436
437# recursive clean
438$(eval $(call recur_template,clean,$(call recur_impls_,clean)))
439
440# recursive stats
441$(eval $(call recur_template,stats,$(call recur_impls_,stats)))
442$(eval $(call recur_template,stats-lisp,$(call recur_impls_,stats-lisp)))
443
444# recursive dist
445$(eval $(call recur_template,dist,$(call recur_impls_,dist)))