diff options
author | Jonathan Protzenko | 2022-02-17 15:54:05 -0800 |
---|---|---|
committer | Jonathan Protzenko | 2022-02-17 15:54:05 -0800 |
commit | 9d1fc9e76ac82951c34952a878a36f7c5f886237 (patch) | |
tree | 752088e53849e874c85c770a0ada12b509235823 /Makefile | |
parent | 66a33c79cbb422377e706fedb7e62678498270bb (diff) |
More stuff for the paper + interactive mode makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -21,11 +21,11 @@ build: # Test the project .PHONY: test -test: build translate-no_nested_borrows translate-hashmap +test: build translate-no_nested_borrows translate-hashmap translate-paper # Add specific options to some tests -translate-no_nested_borrows: TRANS_OPTIONS:=$(TRANS_OPTIONS) -test-units -no-split -no-decreases-clauses -translate-no_nested_borrows: SUBDIR:=misc +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 |