mirror of
https://github.com/waku-org/go-zerokit-rln.git
synced 2025-03-01 04:30:33 +00:00
12 lines
260 B
Makefile
12 lines
260 B
Makefile
.PHONY: rlnlib
|
|
|
|
SHELL := bash # the shell used internally by Make
|
|
|
|
GOBIN ?= $(shell which go)
|
|
|
|
rlnlib:
|
|
scripts/build.sh
|
|
cd zerokit/rln && cbindgen --config ../../cbindgen.toml --crate rln --output ../../rln/librln.h --lang c
|
|
|
|
test:
|
|
go test ./... -count 1 -v
|