-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
21 lines (17 loc) · 858 Bytes
/
Makefile
File metadata and controls
21 lines (17 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include go.mk
.PHONY: help
help:
$(info | build ........... builds the binary |)
$(info | clean ........... remove all untracked and temporary files |)
$(info | test ............ run all tests |)
$(info | race ............ run all tests with race detection enabled |)
$(info | cover ........... run all tests with coverage enabled |)
$(info | vet ............. run the go vet tool |)
$(info | lint ............ run the golint tool |)
$(info | save-deps ....... generates the Godeps folder |)
build: gomkbuild
# Kept for backwards compatibility. User can call `make savegodeps` directly
.PHONY: save-deps
save-deps: savegodeps
.PHONY: clean
clean: gomkclean