forked from klaytn/klaytn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
78 lines (58 loc) · 2.17 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# This Makefile is meant to be used by people that do not usually work
# with Go source code. If you know what GOPATH is then you probably
# don't need to bother with make.
GO ?= latest
GOPATH := $(or $(GOPATH), $(shell go env GOPATH))
GORUN = env GOPATH=$(GOPATH) GO111MODULE=on go run
BIN = $(shell pwd)/build/bin
BUILD_PARAM?=install
OBJECTS=kcn kpn ken kscn kspn ksen kbn kgen homi
.PHONY: all test clean ${OBJECTS}
all: ${OBJECTS}
${OBJECTS}:
ifeq ($(USE_ROCKSDB), 1)
$(GORUN) build/ci.go ${BUILD_PARAM} -tags rocksdb ./cmd/$@
else
$(GORUN) build/ci.go ${BUILD_PARAM} ./cmd/$@
endif
abigen:
$(GORUN) build/ci.go ${BUILD_PARAM} ./cmd/abigen
@echo "Done building."
@echo "Run \"$(BIN)/abigen\" to launch abigen."
test:
$(GORUN) build/ci.go test
test-seq:
$(GORUN) build/ci.go test -p 1
test-datasync:
$(GORUN) build/ci.go test -p 1 ./datasync/...
test-networks:
$(GORUN) build/ci.go test -p 1 ./networks/...
test-node:
$(GORUN) build/ci.go test -p 1 ./node/...
test-tests:
$(GORUN) build/ci.go test -p 1 ./tests/...
test-others:
$(GORUN) build/ci.go test -p 1 -exclude datasync,networks,node,tests
cover:
$(GORUN) build/ci.go cover -coverprofile=coverage.out
go tool cover -func=coverage.out -o coverage_report.txt
go tool cover -html=coverage.out -o coverage_report.html
@echo "Two coverage reports coverage_report.txt and coverage_report.html are generated."
fmt:
$(GORUN) build/ci.go fmt
lint-try:
$(GORUN) build/ci.go lint-try
clean:
env GO111MODULE=on go clean -cache
rm -fr build/_workspace/pkg/ $(BIN)/* build/_workspace/src/
# The devtools target installs tools required for 'go generate'.
# You need to put $BIN (or $GOPATH/bin) in your PATH to use 'go generate'.
devtools:
env GOFLAGS= GOBIN= go get -u golang.org/x/tools/cmd/stringer
env GOFLAGS= GOBIN= go get -u github.com/kevinburke/go-bindata/go-bindata
env GOFLAGS= GOBIN= go get -u github.com/fjl/gencodec
env GOFLAGS= GOBIN= go get -u github.com/golang/protobuf/protoc-gen-go
env GOFLAGS= GOBIN= go install ./cmd/abigen
@type "npm" 2> /dev/null || echo 'Please install node.js and npm'
@type "solc" 2> /dev/null || echo 'Please install solc'
@type "protoc" 2> /dev/null || echo 'Please install protoc'