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