-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
37 lines (27 loc) · 834 Bytes
/
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
BIN="./bin"
NAME="envc"
SRC=$(shell find . -name "*.go")
.PHONY: fmt lint test install_deps clean
default: all
all: fmt test
fmt:
$(info ******************** checking formatting ********************)
@test -z $(shell gofmt -l $(SRC)) || (gofmt -d $(SRC); exit 1)
lint:
$(info ******************** running lint tools ********************)
golangci-lint run -v
test: install_deps
$(info ******************** running tests ********************)
go test -v ./...
install_deps:
$(info ******************** downloading dependencies ********************)
go get -v ./...
build:
$(info ******************** building ********************)
go build -o $(BIN)/$(NAME)
install:
$(info ******************** building ********************)
go build -o $(BIN)/$(NAME)
sudo mv $(BIN)/$(NAME) /usr/local/bin
clean:
rm -rf $(BIN)