-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
32 lines (25 loc) · 1.35 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
VERSION := $(shell echo $(shell git describe --tags || git branch --show-current) | sed 's/^v//')
###############################################################################
### Build flags ###
###############################################################################
LD_FLAGS = -X github.com/EscanBE/house-keeper/constants.VERSION=$(VERSION) \
-X github.com/EscanBE/house-keeper/constants.BUILD_FROM_SOURCE=yes
BUILD_FLAGS := -ldflags '$(LD_FLAGS)'
###############################################################################
### Build ###
###############################################################################
build: go.sum
@echo "building hkd binary..."
@echo "Flags $(BUILD_FLAGS)"
@go build -mod=readonly $(BUILD_FLAGS) -o build/hkd ./cmd/hkd
@echo "Builded successfully"
.PHONY: build
###############################################################################
### Install ###
###############################################################################
install: go.sum
@echo "installing hkd binary..."
@echo "Flags $(BUILD_FLAGS)"
@go install -mod=readonly $(BUILD_FLAGS) ./cmd/hkd
@echo "Installed successfully"
.PHONY: install