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