From 1e9d4882ce5069abd750acf75bb415929b8f953a Mon Sep 17 00:00:00 2001 From: Martin Ondejka Date: Wed, 5 Apr 2023 23:22:43 +0200 Subject: [PATCH] Add mina library to make --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e97acbef23..adbbb15069 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,10 @@ GOBIN = ./build/bin GO ?= latest GORUN = env GO111MODULE=on go run -geth: +mina_lib: + cd mina && cargo build --release + +geth: mina_lib $(GORUN) build/ci.go install ./cmd/geth @echo "Done building." @echo "Run \"$(GOBIN)/geth\" to launch geth."