-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
61 lines (45 loc) · 2.22 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
VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
COMMIT := $(shell git log -1 --format='%H')
export GO111MODULE = on
###############################################################################
### All ###
###############################################################################
all: build
###############################################################################
### Build flags ###
###############################################################################
LD_FLAGS = -X github.com/desmos-labs/juno/version.Version=$(VERSION) \
-X github.com/desmos-labs/juno/version.Commit=$(COMMIT)
BUILD_FLAGS := -ldflags '$(LD_FLAGS)'
###############################################################################
### Build ###
###############################################################################
build: go.sum
@echo "building cyberindex binary..."
@go build -mod=readonly $(BUILD_FLAGS) -o build/cyberindex ./cmd/cyberindex
.PHONY: build
###############################################################################
# Build / Run in Docker
###############################################################################
docker:
@sh scripts/start-docker.sh
.PHONY: docker
###############################################################################
### Install ###
###############################################################################
install: go.sum
@echo "installing cyberindex binary..."
@go install -mod=readonly $(BUILD_FLAGS) ./cmd/cyberindex
.PHONY: install
###############################################################################
### Tools / Dependencies ###
###############################################################################
go-mod-cache: go.sum
@echo "--> Download go modules to local cache"
@go mod download
go.sum: go.mod
@echo "--> Ensure dependencies have not been modified"
go mod verify
go mod tidy
.PHONY: go.sum
.PHONY: go.sum go-mod-cache