diff options
author | Son Ho | 2022-05-06 10:02:06 +0200 |
---|---|---|
committer | Son Ho | 2022-05-06 10:02:06 +0200 |
commit | ec920cf54bd22246cfdbbbc9301e4f5b4716d009 (patch) | |
tree | f887b523c4e7168793b70a676bdbdb9a70e44e7b | |
parent | 6a467c040838e506316c8c72a701c2f61ff0ad1b (diff) |
Update the Makefile for the betree
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -31,7 +31,8 @@ build: .PHONY: test test: build trans-no_nested_borrows trans-paper \ trans-hashmap trans-hashmap_main \ - trans-external trans-nll-betree_nll + trans-external trans-nll-betree_nll \ + trans-nll-betree_main # Add specific options to some tests trans-no_nested_borrows trans-paper: \ @@ -50,6 +51,9 @@ trans-nll-betree_nll: SUBDIR:=misc trans-external: TRANS_OPTIONS += trans-external: SUBDIR:=misc +trans-nll-betree_main: TRANS_OPTIONS += -template-clauses +trans-nll-betree_main: SUBDIR:=betree + # Generic rules to extract the LLBC from a rust file # We use the rules in Charon's Makefile to generate the .llbc files: the options # vary with the test files. |