diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-23 15:17:52 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:54 +0800 |
commit | 1c348b13472a4e1695a5569b21c62a4f6612a73c (patch) | |
tree | 539c5daba413df582765fb5db34ef9aa76869078 /Makefile | |
parent | dec1dc3205c6155b50c3a7ab5cfe2e64642c064f (diff) | |
download | dexon-1c348b13472a4e1695a5569b21c62a4f6612a73c.tar dexon-1c348b13472a4e1695a5569b21c62a4f6612a73c.tar.gz dexon-1c348b13472a4e1695a5569b21c62a4f6612a73c.tar.bz2 dexon-1c348b13472a4e1695a5569b21c62a4f6612a73c.tar.lz dexon-1c348b13472a4e1695a5569b21c62a4f6612a73c.tar.xz dexon-1c348b13472a4e1695a5569b21c62a4f6612a73c.tar.zst dexon-1c348b13472a4e1695a5569b21c62a4f6612a73c.zip |
vendor: use govendor to import dexon-consensus-core
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -11,7 +11,7 @@ GOBIN = $(shell pwd)/build/bin GO ?= latest -geth: +geth: libbls build/env.sh go run build/ci.go install ./cmd/geth @echo "Done building." @echo "Run \"$(GOBIN)/geth\" to launch geth." @@ -40,6 +40,9 @@ test: all lint: ## Run linters. build/env.sh go run build/ci.go lint +libbls: + make -C vendor/github.com/dexon-foundation/bls lib/libbls384.a + clean: ./build/clean_go_build_cache.sh rm -fr build/_workspace/pkg/ $(GOBIN)/* |