-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
42 lines (32 loc) · 1.5 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
COMMIT := $(shell git log -1 --format='%H')
export GO111MODULE = on
###############################################################################
### All ###
###############################################################################
all: lint test-unit install
###############################################################################
### Build ###
###############################################################################
build: go.sum
@echo "building solana_exporter binary..."
@go build -mod=readonly -o build/solana_exporter ./cmd/solana_exporter
.PHONY: build
###############################################################################
### Install ###
###############################################################################
install: go.sum
@echo "installing solana_exporter binary..."
@go install -mod=readonly ./cmd/solana_exporter
.PHONY: install
###############################################################################
### Tests & Simulation ###
###############################################################################
lint:
golangci-lint run --out-format=tab
.PHONY: lint
lint-fix:
golangci-lint run --fix --out-format=tab --issues-exit-code=0
.PHONY: lint-fix
clean:
rm -f tools-stamp ./build/**
.PHONY: clean