all: build-test CHARON_HOME=../charon CHARON_EXEC=$(CHARON_HOME)/charon CHARON_TESTS_DIR=$(CHARON_HOME)/tests/cfim CHARON_OPTIONS= --dest ../tests/cfim --no-code-duplication DEST_DIR=tests # The user can specify additional translation options for Aeneas: OPTIONS ?= # Default translation options: # - insert calls to the normalizer in the translated code to test the # generated unit functions TRANS_OPTIONS:=-test-trans-units $(OPTIONS) SUBDIR:= # Build the project and test it .PHONY: build-test build-test: build test # Build the project .PHONY: build build: dune build src/main.exe # Test the project .PHONY: test test: build translate-no_nested_borrows translate-hashmap translate-paper # Add specific options to some tests translate-no_nested_borrows translate-paper: TRANS_OPTIONS:=$(TRANS_OPTIONS) -test-units -no-split -no-decreases-clauses translate-no_nested_borrows translate-paper: SUBDIR:=misc translate-hashmap: TRANS_OPTIONS:=$(TRANS_OPTIONS) -template-clauses translate-hashmap: SUBDIR:=hashmap # Generic rule to extract the CFIM from a rust file .PHONY: gen-cfim-% gen-cfim-%: build cd $(CHARON_HOME)/charon && cargo run ../tests/src/$*.rs $(CHARON_OPTIONS) # Generic rule to test the translation on a CFIM file .PHONY: translate-% translate-%: gen-cfim-% dune exec -- src/main.exe $(CHARON_TESTS_DIR)/$*.cfim -dest $(DEST_DIR)/$(SUBDIR) $(TRANS_OPTIONS) .PHONY: doc doc: dune build @doc