Skip to content

Commit

Permalink
Give drom its blood tribute
Browse files Browse the repository at this point in the history
  • Loading branch information
bclement-ocp committed Oct 27, 2023
1 parent e737563 commit 4f4a4a1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Makefile.drom-tpl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ all: build

build:
./scripts/before.sh build
opam exec -- dune build!{build-profile} @install
$(DUNE) build!{build-profile} @install
./scripts/copy-bin.sh !{packages}
./scripts/after.sh build

Expand All @@ -43,7 +43,7 @@ sphinx: doc-common
odoc: doc-common
mkdir -p ${ODOC_TARGET}
./scripts/before.sh odoc ${ODOC_TARGET}
opam exec -- dune build @doc
$(DUNE) build @doc
rsync -auv --delete _build/default/_doc/_html/. ${ODOC_TARGET}
./scripts/after.sh odoc ${ODOC_TARGET}

Expand All @@ -53,10 +53,10 @@ view:
xdg-open file://$$(pwd)/_drom/docs/index.html
![fi]
fmt:
opam exec -- dune build @fmt --auto-promote
$(DUNE) build @fmt --auto-promote

fmt-check:
opam exec -- dune build @fmt
$(DUNE) build @fmt

install:
opam pin -y --no-action -k path .
Expand All @@ -73,7 +73,7 @@ dev-deps:

test:
./scripts/before.sh test
opam exec -- dune build @runtest
$(DUNE) build @runtest
./scripts/after.sh test

clean:
Expand Down
1 change: 1 addition & 0 deletions src/lsp/superbol-free/package.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ superbol_free_lib = "version"
# static-clibs = "unix"
[fields]
dune-flags = "(:standard (:include linking.sexp))"
dune-stanzas = "(modes exe js)"
# static-alpine-clibs = "zarith gmp"
# static-macos-clibs = "zarith ${MACPORTS:-/usr/local/osxcross/macports/pkgs/opt/local}/lib/libgmp.a camlstr"
static-macos-clibs = "camlstr bigstringaf_stubs cstruct_stubs"
Expand Down
2 changes: 1 addition & 1 deletion src/lsp/superbol_free_lib/package.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ cobol_typeck = "version"
ez_file = ">=0.3"
ez_cmdliner = "0.3.0"
vscode-json = "version"
ez_api = "2.0"
ez_api = { version = "2.0", libname = "ez_api.encoding" }
ez_toml = "version"

# package tools dependencies
Expand Down

0 comments on commit 4f4a4a1

Please sign in to comment.