Merge pull request #478 from rjtobin/zig
[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
VS
93 elisp elixir elm erlang es6 factor fantom forth fsharp go groovy gnu-smalltalk \
94 guile haskell haxe hy io java js 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 \
14b163d2 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
115e430d
JM
166basic_STEP_TO_PROG_cbm = basic/$($(1)).bas
167basic_STEP_TO_PROG_qbasic = basic/$($(1))
168
a9f64691
JM
169clojure_STEP_TO_PROG_clj = clojure/target/$($(1)).jar
170clojure_STEP_TO_PROG_cljs = clojure/src/mal/$($(1)).cljc
171
32d0a1cf
JM
172haxe_STEP_TO_PROG_neko = haxe/$($(1)).n
173haxe_STEP_TO_PROG_python = haxe/$($(1)).py
174haxe_STEP_TO_PROG_cpp = haxe/cpp/$($(1))
175haxe_STEP_TO_PROG_js = haxe/$($(1)).js
176
fea8cfff
VS
177scheme_STEP_TO_PROG_chibi = scheme/$($(1)).scm
178scheme_STEP_TO_PROG_kawa = scheme/out/$($(1)).class
179scheme_STEP_TO_PROG_gauche = scheme/$($(1)).scm
180scheme_STEP_TO_PROG_chicken = scheme/$($(1))
181scheme_STEP_TO_PROG_sagittarius = scheme/$($(1)).scm
182scheme_STEP_TO_PROG_cyclone = scheme/$($(1))
183scheme_STEP_TO_PROG_foment = scheme/$($(1)).scm
184
17180e85 185# Map of step (e.g. "step8") to executable file for that step
99be41df 186ada_STEP_TO_PROG = ada/$($(1))
e3b1335c 187ada.2_STEP_TO_PROG = ada.2/$($(1))
3b7ef8c7 188awk_STEP_TO_PROG = awk/$($(1)).awk
db4c329a 189bash_STEP_TO_PROG = bash/$($(1)).sh
115e430d 190basic_STEP_TO_PROG = $(basic_STEP_TO_PROG_$(basic_MODE))
6605d096 191bbc-basic_STEP_TO_PROG = bbc-basic/$($(1)).bas
db4c329a 192c_STEP_TO_PROG = c/$($(1))
4abd73a6 193chuck_STEP_TO_PROG = chuck/$($(1)).ck
2d76e877 194clojure_STEP_TO_PROG = $(clojure_STEP_TO_PROG_$(clojure_MODE))
891c3f3b 195coffee_STEP_TO_PROG = coffee/$($(1)).coffee
983d9f3b 196common-lisp_STEP_TO_PROG = common-lisp/$($(1))
9ddaa0b9 197cpp_STEP_TO_PROG = cpp/$($(1))
86fe6314 198crystal_STEP_TO_PROG = crystal/$($(1))
db4c329a 199cs_STEP_TO_PROG = cs/$($(1)).exe
a9f64691 200d_STEP_TO_PROG = d/$($(1))
3934e3f8 201dart_STEP_TO_PROG = dart/$($(1)).dart
ae28e856 202elisp_STEP_TO_PROG = elisp/$($(1)).el
51c2c1fe 203elixir_STEP_TO_PROG = elixir/lib/mix/tasks/$($(1)).ex
a9f64691 204elm_STEP_TO_PROG = elm/$($(1)).js
2cc3804b 205erlang_STEP_TO_PROG = erlang/$($(1))
a11a0235 206es6_STEP_TO_PROG = es6/$($(1)).mjs
199b1ce7 207factor_STEP_TO_PROG = factor/$($(1))/$($(1)).factor
92708e34 208fantom_STEP_TO_PROG = fantom/lib/fan/$($(1)).pod
59038a10 209forth_STEP_TO_PROG = forth/$($(1)).fs
1c358979 210fsharp_STEP_TO_PROG = fsharp/$($(1)).exe
69b4abd6 211go_STEP_TO_PROG = go/$($(1))
a9cd6543 212groovy_STEP_TO_PROG = groovy/$($(1)).groovy
8ea36c89 213gnu-smalltalk_STEP_TO_PROG = gnu-smalltalk/$($(1)).st
a9f64691 214guile_STEP_TO_PROG = guile/$($(1)).scm
b76aa73b 215haskell_STEP_TO_PROG = haskell/$($(1))
2d76e877 216haxe_STEP_TO_PROG = $(haxe_STEP_TO_PROG_$(haxe_MODE))
67365c05 217hy_STEP_TO_PROG = hy/$($(1)).hy
7511317b 218io_STEP_TO_PROG = io/$($(1)).io
a9f64691 219java_STEP_TO_PROG = java/target/classes/mal/$($(1)).class
db4c329a 220js_STEP_TO_PROG = js/$($(1)).js
a9f64691 221julia_STEP_TO_PROG = julia/$($(1)).jl
53c2ea70 222kotlin_STEP_TO_PROG = kotlin/$($(1)).jar
a9f64691
JM
223livescript_STEP_TO_PROG = livescript/$($(1)).js
224logo_STEP_TO_PROG = logo/$($(1)).lg
9d42904e 225lua_STEP_TO_PROG = lua/$($(1)).lua
db4c329a
JM
226make_STEP_TO_PROG = make/$($(1)).mk
227mal_STEP_TO_PROG = mal/$($(1)).mal
9a54ea18 228matlab_STEP_TO_PROG = matlab/$($(1)).m
c1fe72ae 229miniMAL_STEP_TO_PROG = miniMAL/$($(1)).json
0ad505e8 230nasm_STEP_TO_PROG = nasm/$($(1))
dbac60df 231nim_STEP_TO_PROG = nim/$($(1))
2faae94c 232objc_STEP_TO_PROG = objc/$($(1))
0067158f 233objpascal_STEP_TO_PROG = objpascal/$($(1))
a9f64691 234ocaml_STEP_TO_PROG = ocaml/$($(1))
b5dedee0 235perl_STEP_TO_PROG = perl/$($(1)).pl
a7081401 236perl6_STEP_TO_PROG = perl6/$($(1)).pl
db4c329a 237php_STEP_TO_PROG = php/$($(1)).php
8ea36c89 238picolisp_STEP_TO_PROG = picolisp/$($(1)).l
a04e7a78 239pike_STEP_TO_PROG = pike/$($(1)).pike
adc5b4fb 240plpgsql_STEP_TO_PROG = plpgsql/$($(1)).sql
97df14cd 241plsql_STEP_TO_PROG = plsql/$($(1)).sql
d7d197f9 242powershell_STEP_TO_PROG = powershell/$($(1)).ps1
db4c329a
JM
243ps_STEP_TO_PROG = ps/$($(1)).ps
244python_STEP_TO_PROG = python/$($(1)).py
270f1f72 245python.2_STEP_TO_PROG = python.2/$($(1)).py
4d1456b9 246r_STEP_TO_PROG = r/$($(1)).r
f5223195 247racket_STEP_TO_PROG = racket/$($(1)).rkt
2a368ba6 248rexx_STEP_TO_PROG = rexx/$($(1)).rexxpp
80320efc 249rpython_STEP_TO_PROG = rpython/$($(1))
db4c329a 250ruby_STEP_TO_PROG = ruby/$($(1)).rb
4ef4b17c 251rust_STEP_TO_PROG = rust/$($(1))
37a33ac7 252scala_STEP_TO_PROG = scala/target/scala-2.11/classes/$($(1)).class
fea8cfff 253scheme_STEP_TO_PROG = $(scheme_STEP_TO_PROG_$(scheme_MODE))
034e82ad 254skew_STEP_TO_PROG = skew/$($(1)).js
2539e6af 255swift_STEP_TO_PROG = swift/$($(1))
0eace3df 256swift3_STEP_TO_PROG = swift3/$($(1))
573f6d0f 257swift4_STEP_TO_PROG = swift4/$($(1))
447a09bd 258swift5_STEP_TO_PROG = swift5/$($(1))
54d9903c 259tcl_STEP_TO_PROG = tcl/$($(1)).tcl
571eb786 260ts_STEP_TO_PROG = ts/$($(1)).js
213a3288 261vala_STEP_TO_PROG = vala/$($(1))
ee7cd585 262vb_STEP_TO_PROG = vb/$($(1)).exe
36e91db4 263vhdl_STEP_TO_PROG = vhdl/$($(1))
50a964ce 264vimscript_STEP_TO_PROG = vimscript/$($(1)).vim
1e9eb423 265wasm_STEP_TO_PROG = wasm/$($(1)).$(if $(filter lucet,$(wasm_MODE)),so,wasm)
5755c330 266wren_STEP_TO_PROG = wren/$($(1)).wren
21986733 267yorick_STEP_TO_PROG = yorick/$($(1)).i
4bf6523f 268zig_STEP_TO_PROG = zig/$($(1))
db4c329a 269
5a5357b1
JM
270#
271# General settings and utility functions
272#
273
c4033aab
JM
274# Needed some argument munging
275COMMA = ,
276noop =
277SPACE = $(noop) $(noop)
d1596ac2 278export FACTOR_ROOTS := .
db4c329a 279
77fd710c 280opt_HARD = $(if $(strip $(HARD)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(HARD)),--hard,),)
5a5357b1
JM
281opt_DEFERRABLE = $(if $(strip $(DEFERRABLE)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(DEFERRABLE)),--deferrable,--no-deferrable),--no-deferrable)
282opt_OPTIONAL = $(if $(strip $(OPTIONAL)),$(if $(filter t true T True TRUE 1 y yes Yes YES,$(OPTIONAL)),--optional,--no-optional),--no-optional)
283
284# Return list of test files for a given step. If REGRESS is set then
285# test files will include step 2 tests through tests for the step
286# being tested.
287STEP_TEST_FILES = $(strip $(wildcard \
195977ce
JM
288 $(foreach s,$(if $(strip $(REGRESS)),\
289 $(filter-out $(if $(filter $(1),$(step5_EXCLUDES)),step5,),\
290 $(regress_$(2)))\
291 ,$(2)),\
5a5357b1
JM
292 $(1)/tests/$($(s))$(EXTENSION) tests/$($(s))$(EXTENSION))))
293
4959b19d
JM
294# DOCKERIZE utility functions
295lc = $(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))))))))))))))))))))))))))
296impl_to_image = kanaka/mal-test-$(call lc,$(1))
297
ff4e5f16 298actual_impl = $(if $(filter mal,$(1)),$(patsubst %-mal,%,$(MAL_IMPL)),$(1))
4959b19d 299
20e8dea0
JM
300# Takes impl
301# Returns nothing if DOCKERIZE is not set, otherwise returns the
302# docker prefix necessary to run make within the docker environment
303# for this impl
7864f19b
JM
304get_build_command = $(strip $(foreach mode,$(1)_MODE, \
305 $(if $(strip $(DOCKERIZE)),\
306 docker run \
307 -it --rm -u $(shell id -u) \
308 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
309 -w /mal/$(1) \
310 $(if $(strip $($(mode))),-e $(mode)=$($(mode)),) \
311 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
312 $(call impl_to_image,$(1)) \
313 $(MAKE) $(if $(strip $($(mode))),$(mode)=$($(mode)),) \
314 ,\
315 $(MAKE) $(if $(strip $($(mode))),$(mode)=$($(mode)),) -C $(impl))))
db4c329a 316
48bd82ba 317# Takes impl and step args. Optional env vars and dockerize args
20e8dea0
JM
318# Returns a command prefix (docker command and environment variables)
319# necessary to launch the given impl and step
7864f19b
JM
320get_run_prefix = $(strip $(foreach mode,$(call actual_impl,$(1))_MODE, \
321 $(if $(strip $(DOCKERIZE) $(4)),\
322 docker run -e STEP=$($2) -e MAL_IMPL=$(MAL_IMPL) \
323 -it --rm -u $(shell id -u) \
324 -v $(dir $(abspath $(lastword $(MAKEFILE_LIST)))):/mal \
325 -w /mal/$(call actual_impl,$(1)) \
326 $(if $(strip $($(mode))),-e $(mode)=$($(mode)),) \
327 $(if $(filter factor,$(1)),-e FACTOR_ROOTS=$(FACTOR_ROOTS),) \
328 $(foreach env,$(3),-e $(env)) \
329 $(call impl_to_image,$(call actual_impl,$(1))) \
330 ,\
331 env STEP=$($2) MAL_IMPL=$(MAL_IMPL) \
332 $(if $(strip $($(mode))),$(mode)=$($(mode)),) \
333 $(if $(filter factor,$(1)),FACTOR_ROOTS=$(FACTOR_ROOTS),) \
334 $(3))))
20e8dea0
JM
335
336# Takes impl and step
337# Returns the runtest command prefix (with runtest options) for testing the given step
6c4cc8ad 338get_runtest_cmd = $(call get_run_prefix,$(1),$(2),$(if $(filter cs fsharp mal tcl vb,$(1)),RAW=1,)) \
77fd710c 339 ../runtest.py $(opt_HARD) $(opt_DEFERRABLE) $(opt_OPTIONAL) $(call $(1)_TEST_OPTS) $(TEST_OPTS)
20e8dea0
JM
340
341# Takes impl and step
342# Returns the runtest command prefix (with runtest options) for testing the given step
343get_argvtest_cmd = $(call get_run_prefix,$(1),$(2)) ../run_argv_test.sh
31690700 344
31690700 345# Derived lists
195977ce 346STEPS = $(sort $(filter-out %_EXCLUDES,$(filter step%,$(.VARIABLES))))
8569b2af
JM
347DO_IMPLS = $(filter-out $(SKIP_IMPLS),$(IMPLS))
348IMPL_TESTS = $(foreach impl,$(DO_IMPLS),test^$(impl))
31690700 349STEP_TESTS = $(foreach step,$(STEPS),test^$(step))
195977ce 350ALL_TESTS = $(filter-out $(foreach e,$(step5_EXCLUDES),test^$(e)^step5),\
31690700 351 $(strip $(sort \
8569b2af 352 $(foreach impl,$(DO_IMPLS),\
31690700 353 $(foreach step,$(STEPS),test^$(impl)^$(step))))))
a003046c
JM
354ALL_BUILDS = $(strip $(sort \
355 $(foreach impl,$(DO_IMPLS),\
356 $(foreach step,$(STEPS),build^$(impl)^$(step)))))
31690700 357
cf1d3eae
JM
358DOCKER_BUILD = $(foreach impl,$(DO_IMPLS),docker-build^$(impl))
359
48bd82ba
JM
360DOCKER_SHELL = $(foreach impl,$(DO_IMPLS),docker-shell^$(impl))
361
dca6b585 362IMPL_PERF = $(foreach impl,$(filter-out $(perf_EXCLUDES),$(DO_IMPLS)),perf^$(impl))
db4c329a 363
c4269f9b
JM
364IMPL_STATS = $(foreach impl,$(DO_IMPLS),stats^$(impl))
365
854cf2a6
DM
366IMPL_REPL = $(foreach impl,$(DO_IMPLS),repl^$(impl))
367ALL_REPL = $(strip $(sort \
368 $(foreach impl,$(DO_IMPLS),\
369 $(foreach step,$(STEPS),repl^$(impl)^$(step)))))
db4c329a 370
5a5357b1 371
31690700
JM
372#
373# Build rules
374#
375
5a5357b1
JM
376# Enable secondary expansion for all rules
377.SECONDEXPANSION:
378
4fc7a281 379# Build a program in an implementation directory
f045aba1
JM
380# Make sure we always try and build first because the dependencies are
381# encoded in the implementation Makefile not here
382.PHONY: $(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s))))
4fc7a281 383$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(call $(i)_STEP_TO_PROG,$(s)))):
f045aba1 384 $(foreach impl,$(word 1,$(subst /, ,$(@))),\
4959b19d 385 $(if $(DOCKERIZE), \
85bb01d0 386 $(call get_build_command,$(impl)) $(patsubst $(impl)/%,%,$(@)), \
7864f19b 387 $(call get_build_command,$(impl)) $(subst $(impl)/,,$(@))))
31690700 388
a003046c 389# Allow IMPL, build^IMPL, IMPL^STEP, and build^IMPL^STEP
5b207de7 390$(DO_IMPLS): $$(foreach s,$$(STEPS),$$(call $$(@)_STEP_TO_PROG,$$(s)))
31690700 391
a003046c
JM
392$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),build^$(i))): $$(foreach s,$$(STEPS),$$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(s)))
393
5b207de7
JM
394$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),$(i)^$(s))): $$(call $$(word 1,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 2,$$(subst ^, ,$$(@))))
395
a003046c
JM
396$(foreach i,$(DO_IMPLS),$(foreach s,$(STEPS),build^$(i)^$(s))): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
397
398
5b207de7
JM
399
400#
401# Test rules
402#
31690700 403
31690700
JM
404$(ALL_TESTS): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
405 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
406 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
ff4e5f16 407 cd $(call actual_impl,$(impl)) && \
31690700 408 $(foreach test,$(call STEP_TEST_FILES,$(impl),$(step)),\
d5221bcf 409 echo '----------------------------------------------' && \
20e8dea0 410 echo 'Testing $@; step file: $+, test file: $(test)' && \
ba1649e4
JM
411 echo 'Running: $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run' && \
412 $(call get_runtest_cmd,$(impl),$(step)) ../$(test) -- ../$(impl)/run && \
a0e89ae4 413 $(if $(filter tests/$(argv_STEP)$(EXTENSION),$(test)),\
d3c401c1
DM
414 echo '----------------------------------------------' && \
415 echo 'Testing ARGV of $@; step file: $+' && \
20e8dea0
JM
416 echo 'Running: $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run ' && \
417 $(call get_argvtest_cmd,$(impl),$(step)) ../$(impl)/run && ,\
d3c401c1 418 true && ))\
d5221bcf 419 true))
31690700 420
5b207de7 421# Allow test, tests, test^STEP, test^IMPL, and test^IMPL^STEP
31690700
JM
422test: $(ALL_TESTS)
423tests: $(ALL_TESTS)
424
5b207de7 425$(IMPL_TESTS): $$(filter $$@^%,$$(ALL_TESTS))
31690700 426
5b207de7 427$(STEP_TESTS): $$(foreach step,$$(subst test^,,$$@),$$(filter %^$$(step),$$(ALL_TESTS)))
31690700 428
db4c329a 429
5b207de7 430#
48bd82ba 431# Docker build rules
5b207de7 432#
b6dc3e37 433
48bd82ba 434docker-build: $(DOCKER_BUILD)
31690700 435
48bd82ba 436$(DOCKER_BUILD):
712af9ef
JM
437 @echo "----------------------------------------------"; \
438 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
48bd82ba
JM
439 echo "Running: docker build -t $(call impl_to_image,$(impl)) .:"; \
440 cd $(impl) && docker build -t $(call impl_to_image,$(impl)) .)
712af9ef 441
5b207de7 442#
48bd82ba 443# Docker shell rules
5b207de7 444#
cf1d3eae 445
48bd82ba
JM
446$(DOCKER_SHELL):
447 @echo "----------------------------------------------"; \
cf1d3eae 448 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
48bd82ba
JM
449 echo "Running: $(call get_run_prefix,$(impl),stepA,,dockerize) bash"; \
450 $(call get_run_prefix,$(impl),stepA,,dockerize) bash)
db4c329a 451
5b207de7
JM
452
453#
db4c329a 454# Performance test rules
5b207de7 455#
db4c329a
JM
456
457perf: $(IMPL_PERF)
458
db4c329a
JM
459$(IMPL_PERF):
460 @echo "----------------------------------------------"; \
461 $(foreach impl,$(word 2,$(subst ^, ,$(@))),\
ff4e5f16 462 cd $(call actual_impl,$(impl)); \
db4c329a 463 echo "Performance test for $(impl):"; \
20e8dea0
JM
464 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal'; \
465 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf1.mal; \
466 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal'; \
467 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf2.mal; \
468 echo 'Running: $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal'; \
469 $(call get_run_prefix,$(impl),stepA) ../$(impl)/run ../tests/perf3.mal)
db4c329a 470
854cf2a6 471
5b207de7 472#
854cf2a6 473# REPL invocation rules
5b207de7 474#
854cf2a6 475
854cf2a6
DM
476$(ALL_REPL): $$(call $$(word 2,$$(subst ^, ,$$(@)))_STEP_TO_PROG,$$(word 3,$$(subst ^, ,$$(@))))
477 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
478 $(foreach step,$(word 3,$(subst ^, ,$(@))),\
ff4e5f16 479 cd $(call actual_impl,$(impl)); \
854cf2a6 480 echo 'REPL implementation $(impl), step file: $+'; \
5a5357b1
JM
481 echo 'Running: $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run $(RUN_ARGS)'; \
482 $(call get_run_prefix,$(impl),$(step)) ../$(impl)/run $(RUN_ARGS);))
bcfd8b70 483
5b207de7 484# Allow repl^IMPL^STEP and repl^IMPL (which starts REPL of stepA)
5b207de7
JM
485$(IMPL_REPL): $$@^stepA
486
c4269f9b
JM
487#
488# Stats test rules
489#
490
491# For a concise summary:
492# make stats | egrep -A1 "^Stats for|^all" | egrep -v "^all|^--"
493stats: $(IMPL_STATS)
494
495$(IMPL_STATS):
496 @$(foreach impl,$(word 2,$(subst ^, ,$(@))),\
497 echo "Stats for $(impl):"; \
72eb6c9e 498 $(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" $(impl))
c4269f9b 499
dca6b585
JM
500#
501# Utility functions
502#
dca6b585
JM
503print-%:
504 @echo "$($(*))"
bcfd8b70 505
5b207de7 506#
bcfd8b70 507# Recursive rules (call make FOO in each subdirectory)
5b207de7 508#
bcfd8b70
JM
509
510define recur_template
511.PHONY: $(1)
512$(1): $(2)
bcfd8b70
JM
513$(2):
514 @echo "----------------------------------------------"; \
515 $$(foreach impl,$$(word 2,$$(subst ^, ,$$(@))),\
7864f19b
JM
516 echo "Running: $$(call get_build_command,$$(impl)) --no-print-directory $(1)"; \
517 $$(call get_build_command,$$(impl)) --no-print-directory $(1))
bcfd8b70
JM
518endef
519
520recur_impls_ = $(filter-out $(foreach impl,$($(1)_EXCLUDES),$(1)^$(impl)),$(foreach impl,$(IMPLS),$(1)^$(impl)))
521
522# recursive clean
523$(eval $(call recur_template,clean,$(call recur_impls_,clean)))
524
bcfd8b70
JM
525# recursive dist
526$(eval $(call recur_template,dist,$(call recur_impls_,dist)))