catala/tests/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
473 B
Makefile
Raw Normal View History

2020-08-07 18:37:28 +03:00
############################################
# Preamble
############################################
CATALA_OPTS?=
2022-04-14 12:47:18 +03:00
CLERK_OPTS?=--makeflags="$(MAKEFLAGS)"
2022-01-10 20:35:41 +03:00
CLERK=dune exec -- ../build_system/clerk.exe test \
2023-09-19 17:26:05 +03:00
$(CLERK_OPTS) $(if $(CATALA_OPTS),--catala-opts=$(CATALA_OPTS),)
2020-08-07 18:37:28 +03:00
# Forces all the tests to be redone
.FORCE:
%.catala_en %.catala_fr %.catala_pl: .FORCE
$(CLERK) $@
2022-08-30 14:48:20 +03:00
pass_all_tests:
$(CLERK) .
2022-08-30 14:48:20 +03:00
reset_all_tests: CLERK_OPTS+=--reset
reset_all_tests:
$(CLERK) .