diff options
author | Jonathan Protzenko | 2023-01-23 18:18:11 -0800 |
---|---|---|
committer | Son HO | 2023-06-04 21:44:33 +0200 |
commit | d6fb79417c2fed9c9478ef5e4a2fddb23275aef2 (patch) | |
tree | 8bdc2e1e144c38900b5e11e2bbf9c9b1b7423d08 | |
parent | cbcaa965c4ee5597bb8f4f8bee7fba87729e7154 (diff) |
Facilitate development by having a local Makefile invoke dune
-rw-r--r-- | compiler/.gitignore | 1 | ||||
-rw-r--r-- | compiler/Makefile | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/compiler/.gitignore b/compiler/.gitignore new file mode 100644 index 00000000..8357dae7 --- /dev/null +++ b/compiler/.gitignore @@ -0,0 +1 @@ +charon diff --git a/compiler/Makefile b/compiler/Makefile new file mode 100644 index 00000000..ea179dd2 --- /dev/null +++ b/compiler/Makefile @@ -0,0 +1,3 @@ +.PHONY: all +all: + @dune build |