From e625146762b16d85c71209029e19a26d1f42f8be Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Tue, 5 Apr 2022 14:01:27 +0300 Subject: Switch to dune and add opam packaging --- src/Makefile | 4 ---- src/dune | 10 ++++++++++ 2 files changed, 10 insertions(+), 4 deletions(-) delete mode 100644 src/Makefile create mode 100644 src/dune (limited to 'src') diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 8a00d3a..0000000 --- a/src/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -all: uncron - -uncron: uncron.ml - ocamlfind ocamlopt -I +threads -package lwt,lwt.unix,lwt_ppx,logs,logs.lwt,containers -linkpkg -thread -o uncron -g ./uncron.ml diff --git a/src/dune b/src/dune new file mode 100644 index 0000000..bcb4d31 --- /dev/null +++ b/src/dune @@ -0,0 +1,10 @@ +(executable + (name uncron) + (public_name uncron) + (libraries + containers + lwt + lwt.unix + lwt_ppx + logs + logs.lwt)) -- cgit v1.2.3