Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
andreypopp committed Jan 27, 2020
1 parent d38037a commit e562d47
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 1,147 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ clean:
@esy dune clean

build:
@esy b dune build -j 4 $(TARGETS)
@esy b dune build -j 4

esy::
@esy b dune build -j 4 _build/default/esy/Esy.cmxa
Expand All @@ -106,7 +106,10 @@ doc:

b: build-dev
build-dev:
@esy b dune build -j 4 $(TARGETS)
@esy b dune build -j 4

check:
@esy dune build @check

fmt refmt::
@esy dune build @fmt --auto-promote
Expand Down
6 changes: 6 additions & 0 deletions esy-lib/S.re
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ module type COMPARABLE = {
let compare: (t, t) => int;
};

module type SEXPABLE = {
type t;

let sexp_of_t: t => Sexplib0.Sexp.t;
};

module type COMMON = {
type t;

Expand Down
Loading

0 comments on commit e562d47

Please sign in to comment.