aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-09-05 13:35:20 +0800
committerGitHub <noreply@github.com>2018-09-05 13:35:20 +0800
commit2b5c97e53e9734dda971456ff483bf2b34f0f021 (patch)
tree38f85928ce552762de4243df5feb7757c2a75410 /GNUmakefile
parent41641e10286dd7b1fdcced6a51157e061d545ef5 (diff)
downloaddexon-consensus-2b5c97e53e9734dda971456ff483bf2b34f0f021.tar
dexon-consensus-2b5c97e53e9734dda971456ff483bf2b34f0f021.tar.gz
dexon-consensus-2b5c97e53e9734dda971456ff483bf2b34f0f021.tar.bz2
dexon-consensus-2b5c97e53e9734dda971456ff483bf2b34f0f021.tar.lz
dexon-consensus-2b5c97e53e9734dda971456ff483bf2b34f0f021.tar.xz
dexon-consensus-2b5c97e53e9734dda971456ff483bf2b34f0f021.tar.zst
dexon-consensus-2b5c97e53e9734dda971456ff483bf2b34f0f021.zip
CRYPTO: dkg library (#95)
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile
index ed296e9..1152468 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -51,12 +51,13 @@ all: $(COMPONENTS)
$(foreach component, $(COMPONENTS), $(eval $(call BUILD_RULE,$(component))))
-pre-build: eth-dep
+pre-build: dep
-pre-submit: eth-dep check-format lint test vet
+pre-submit: dep check-format lint test vet
-eth-dep:
+dep:
@bin/install_eth_dep.sh
+ @bin/install_dkg_dep.sh
format:
@go fmt `go list ./... | grep -v 'vendor'`