From 07021e902a442ccda5979059415c51ddc4930980 Mon Sep 17 00:00:00 2001 From: Son Ho Date: Wed, 20 Mar 2024 06:36:16 +0100 Subject: Update the Makefile --- Makefile | 8 ++++---- README.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 8b9c8392..5f8fd537 100644 --- a/Makefile +++ b/Makefile @@ -50,8 +50,8 @@ SUBDIR := #################################### # Build the project, test it and verify the generated files -.PHONY: build-tests-verify -build-tests-verify: build tests verify +.PHONY: build-test-verify +build-test-verify: build test verify # Build the project .PHONY: build @@ -84,8 +84,8 @@ clean: cd compiler && dune clean # Test the project by translating test files to F* -.PHONY: tests -tests: test-no_nested_borrows test-paper \ +.PHONY: test +test: test-no_nested_borrows test-paper \ test-hashmap test-hashmap_main \ test-external test-constants \ testp-polonius_list testp-betree_main \ diff --git a/README.md b/README.md index 82ff3944..df7b2bf1 100644 --- a/README.md +++ b/README.md @@ -60,11 +60,11 @@ if [ -e charon ]; then echo "valid"; else echo "invalid"; fi Finally, building the project simply requires to run `make` in the top directory. -You can also use `make tests` and `make verify` to run the tests, and check -the generated files. As `make tests` will run tests which use the Charon tests, +You can also use `make test` and `make verify` to run the tests, and check +the generated files. As `make test` will run tests which use the Charon tests, you will need to regenerate the `.llbc` files. You have the following options: -- run `make tests` in the Charon repository -- run `REGEN_LLBC=1 make tests` in the Aeneas repository +- run `make test` in the Charon repository +- run `make test` in the Aeneas repository ## Documentation -- cgit v1.2.3