diff options
author | Son Ho | 2024-04-03 17:23:31 +0200 |
---|---|---|
committer | Son Ho | 2024-04-03 17:23:31 +0200 |
commit | 944a46fe61018e2b4266f19297daa822b41cf9e7 (patch) | |
tree | 5e7aa53510a1e9bbc2ff15dc77875d970a6a49fa /Makefile | |
parent | f4a89caad1459f2f72295c5baa284fe1f9b4c39f (diff) |
Improve the Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -20,6 +20,10 @@ REGEN_LLBC ?= # The path to Charon CHARON_HOME ?= ../charon +ifeq (,$(wildcard $(CHARON_HOME))) + $(error The directory $$CHARON_HOME does not exist$(newline)(CHARON_HOME=$(CHARON_HOME)).) +endif + # The paths to the test directories in Charon (Aeneas will look for the .llbc # files in there). CHARON_TESTS_REGULAR_DIR ?= $(CHARON_HOME)/tests @@ -89,7 +93,7 @@ clean: # Test the project by translating test files to F* .PHONY: test -test: test-no_nested_borrows test-paper \ +test: build-dev test-no_nested_borrows test-paper \ test-hashmap test-hashmap_main \ test-external test-constants \ testp-polonius_list testp-betree_main \ |