2020-08-07 18:37:28 +03:00
|
|
|
############################################
|
|
|
|
# Preamble
|
|
|
|
############################################
|
|
|
|
|
2022-01-11 15:05:04 +03:00
|
|
|
CATALA_OPTS?=
|
2022-04-14 12:47:18 +03:00
|
|
|
CLERK_OPTS?=--makeflags="$(MAKEFLAGS)"
|
2022-01-10 20:35:41 +03:00
|
|
|
|
2022-01-12 17:00:53 +03:00
|
|
|
CLERK=_build/default/build_system/clerk.exe --exe "_build/default/compiler/catala.exe" \
|
2022-01-11 15:05:04 +03:00
|
|
|
$(CLERK_OPTS) $(if $(CATALA_OPTS),--catala-opts=$(CATALA_OPTS),) test
|
2020-08-07 18:37:28 +03:00
|
|
|
|
|
|
|
# Forces all the tests to be redone
|
|
|
|
.FORCE:
|
|
|
|
|
2022-01-10 19:57:11 +03:00
|
|
|
%.catala_en %.catala_fr %.catala_pl: .FORCE
|
2022-01-12 16:48:20 +03:00
|
|
|
# Here we cd to the root of the Catala repository such that the paths \
|
|
|
|
# displayed in error messages start with `tests/` uniformly.
|
2022-01-12 17:00:53 +03:00
|
|
|
@cd ..; $(CLERK) tests/$@
|