From 444256a8bc9094806436f23c28341b2233151ad6 Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Thu, 3 Sep 2020 19:12:15 +0200 Subject: [PATCH] add justfile --- justfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..e39d713 --- /dev/null +++ b/justfile @@ -0,0 +1,13 @@ +# vim: set ft=make : + +bootstrap: + echo "eval $(opam env)" > .envrc + direnv allow + opam create . "4.11.1" + opam install --deps-only . + +build: + dune build src/main.exe + +run: build + _build/default/src/main.exe