From d62d08c0702beacd235e6b6dbd13d0146628fd06 Mon Sep 17 00:00:00 2001 From: zach Date: Thu, 25 Aug 2022 19:34:04 -0700 Subject: [PATCH] refactor: move some files around --- .github/workflows/ci.yml | 2 +- Makefile | 5 +---- ocaml/dune-project => dune-project | 0 ocaml/extism.opam => extism.opam | 0 4 files changed, 2 insertions(+), 5 deletions(-) rename ocaml/dune-project => dune-project (100%) rename ocaml/extism.opam => extism.opam (100%) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d808d1..4036fb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,8 +98,8 @@ jobs: # - name: Test OCaml Host SDK # run: | - # cd ocaml # opam install -y . + # cd ocaml # opam exec -- dune exec extism \ No newline at end of file diff --git a/Makefile b/Makefile index 530f148..724439f 100644 --- a/Makefile +++ b/Makefile @@ -29,10 +29,7 @@ build: install: install runtime/extism.h $(DEST)/include - install runtime/target/release/libextism.$(SOEXT) $(DEST)/lib - - ls $(DEST)/include | grep extism - ls $(DEST)/lib | grep extism + install target/release/libextism.$(SOEXT) $(DEST)/lib uninstall: rm -f $(DEST)/include/extism.h $(DEST)/lib/libextism.$(SOEXT) diff --git a/ocaml/dune-project b/dune-project similarity index 100% rename from ocaml/dune-project rename to dune-project diff --git a/ocaml/extism.opam b/extism.opam similarity index 100% rename from ocaml/extism.opam rename to extism.opam