-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
37 lines (27 loc) · 1.42 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
VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
COMMIT := $(shell git log -1 --format='%H')
###############################################################################
### Build flags ###
###############################################################################
LD_FLAGS = -X github.com/forbole/bookkeeper/version.Version=$(VERSION) \
-X github.com/forbole/bookkeeper/version.Commit=$(COMMIT)
BUILD_FLAGS := -ldflags '$(LD_FLAGS)'
###############################################################################
### Build ###
###############################################################################
build: go.sum
ifeq ($(OS),Windows_NT)
@echo "building bookkeeper binary..."
@go build -mod=readonly $(BUILD_FLAGS) -o build/bdbookkeeper.exe ./cmd/bdbookkeeper
else
@echo "building bookkeeper binary..."
@go build -mod=readonly $(BUILD_FLAGS) -o build/bdbookkeeper ./cmd/bdbookkeeper
endif
.PHONY: build
###############################################################################
### Install ###
###############################################################################
install: go.sum
@echo "installing bookkeeper binary..."
@go install -mod=readonly $(BUILD_FLAGS) ./cmd/bookkeeper
.PHONY: install