-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
55 lines (41 loc) · 1.06 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
# This file is part of cli-bookmarks.
#
# Copyright (C) 2018 David Gamba Rios
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
NAME=cli-bookmarks
BUILD_FLAGS=-ldflags="-X github.com/DavidGamba/$(NAME)/semver.BuildMetadata=`git rev-parse HEAD`"
.PHONY: test debug deps
test:
go test ./...
debug:
pwd
echo ${GOPATH}
ls **
deps:
go get -u github.com/DavidGamba/go-getoptions
go get -u github.com/DavidGamba/ffind
go get -u github.com/nsf/termbox-go
go get -u github.com/BurntSushi/toml
cover:
# Works as of Go v1.10
go test -coverprofile=coverage.out -covermode=atomic ./...
view:
go tool cover -html=coverage.out
doc:
asciidoctor README.adoc
man:
asciidoctor -b manpage $(NAME).adoc
open:
open README.html
build:
go build $(BUILD_FLAGS)
install:
go install $(BUILD_FLAGS) main.go
rpm:
rpmbuild -bb rpm.spec \
--define '_rpmdir ./RPMS' \
--define '_sourcedir ${PWD}' \
--buildroot ${PWD}/buildroot