mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
26 lines
747 B
Makefile
26 lines
747 B
Makefile
CATALA_OPTS?=
|
|
CLERK_OPTS?=--makeflags="$(MAKEFLAGS)"
|
|
|
|
CLERK=_build/default/build_system/clerk.exe --exe "_build/default/compiler/catala.exe" \
|
|
$(CLERK_OPTS) $(if $(CATALA_OPTS),--catala-opts=$(CATALA_OPTS),) test
|
|
|
|
################################
|
|
# Running legislation unit tests
|
|
################################
|
|
|
|
pass_all_tests:
|
|
@cd ..;OCAMLRUNPARAM= $(CLERK) examples
|
|
|
|
reset_all_tests: CLERK_OPTS+=--reset
|
|
reset_all_tests:
|
|
@cd ..;OCAMLRUNPARAM= $(CLERK) examples
|
|
|
|
%.catala_en %.catala_fr %.catala_pl: .FORCE
|
|
# Here we cd to the root of the Catala repository such that the paths \
|
|
# displayed in error messages start with `examples/` uniformly.
|
|
@cd ..;OCAMLRUNPARAM= $(CLERK) examples/$@
|
|
|
|
.FORCE:
|
|
|
|
.PHONY: pass_all_tests reset_all_tests
|