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