mirror of
https://github.com/logos-messaging/go-rln.git
synced 2026-01-02 13:03:07 +00:00
16 lines
391 B
Makefile
16 lines
391 B
Makefile
.PHONY: rlnlib
|
|
|
|
SHELL := bash # the shell used internally by Make
|
|
|
|
GOBIN ?= $(shell which go)
|
|
|
|
rlnlib-cross:
|
|
scripts/build-cross.sh
|
|
cd lib/rln && cbindgen --config ../cbindgen.toml --crate rln --output ../../rln/librln.h --lang c
|
|
|
|
rlnlib:
|
|
scripts/build.sh
|
|
cd lib/rln && cbindgen --config ../cbindgen.toml --crate rln --output ../../rln/librln.h --lang c
|
|
|
|
test:
|
|
go test ./... -count 1 -v
|