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