-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
62 lines (47 loc) · 1.77 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
################################################################################
#### INSTALLATION VARS
################################################################################
PREFIX=/usr/local
################################################################################
#### BUILD VARS
################################################################################
BIN=oid
BINS_DIR=bin
CMD_DIR=cmd
HEAD=$(shell git describe --dirty --long --tags 2> /dev/null || git rev-parse --short HEAD)
TIMESTAMP=$(shell TZ=UTC date '+%FT%T %Z')
DEPLOYMENT_PATH=apps/$(BIN)-$(HEAD)
SSH_ALIAS=
LDFLAGS="-X 'main.buildVersion=$(HEAD)' -X 'main.buildTimestamp=$(TIMESTAMP)' -X 'main.compiledBy=$(shell go version)'" # `-s -w` removes some debugging info that might not be necessary in production (smaller binaries)
all: local
################################################################################
#### HOUSE CLEANING
################################################################################
.PHONY: dep
dep:
go mod vendor
.PHONY: check
check:
golint
goimports -w ./
gofmt -w ./
go vet
.PHONY: clean
clean:
rm -f $(BIN) $(BIN)-* $(BINS_DIR)/$(BIN) $(BINS_DIR)/$(BIN)-*
################################################################################
#### INSTALL
################################################################################
.PHONY: install
install:
mkdir -p $(PREFIX)/bin
cp $(BINS_DIR)/$(BIN) $(PREFIX)/bin/$(BIN)
.PHONY: uninstall
uninstall:
rm -f $(PREFIX)/bin/$(BIN)
################################################################################
#### ENV BUILDS
################################################################################
.PHONY: local
local: clean
go build -ldflags $(LDFLAGS) -o $(BINS_DIR)/$(BIN) ./$(CMD_DIR)/$(BIN)