diff options
author | Son Ho | 2021-12-07 17:53:28 +0100 |
---|---|---|
committer | Son Ho | 2021-12-07 17:53:28 +0100 |
commit | 34eee949be4610a9e9f1d18b3e6b0afada8d9706 (patch) | |
tree | 0f2fddf275e03be94a6cabc01f2827910e4effd3 /Makefile | |
parent | 5b04c0d0475fa8368a361575f7f0084de77ab900 (diff) |
Add comments in the Makefile
Diffstat (limited to '')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,3 +1,7 @@ +# The all target builds the project and runs it on a test file (whose path +# is currently hardcoded in main.ml). In order to check that we don't alter +# the behaviour of the interpreter while updating it, we check that the trace +# remains unchanged. all: dune build src/main.exe && \ dune exec src/main.exe > tests/trace_current.txt && \ |