mirror of
https://github.com/extism/extism.git
synced 2026-04-23 03:00:11 -04:00
17 lines
250 B
Makefile
17 lines
250 B
Makefile
VERSION?=0.4.0
|
|
TAG?=0.5.0
|
|
|
|
build:
|
|
dune build
|
|
|
|
test:
|
|
dune test
|
|
format:
|
|
dune build @fmt --auto-promote
|
|
|
|
prepare:
|
|
opam install .. --deps-only
|
|
|
|
publish:
|
|
opam publish -v $(VERSION) https://github.com/extism/extism/archive/refs/tags/v$(TAG).tar.gz ..
|