-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
45 lines (37 loc) · 834 Bytes
/
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
NAME=slick
VERSION=0.0.1
.DEFAULT_GOAL := help
.PHONY: build
## build: Compile the packages.
build:
@go build -v -o bin/$(NAME) cmd/$(NAME)/main.go
.PHONY: install
## install: Install the packages.
install: build
@mv bin/$(NAME) $(GOPATH)/bin/$(NAME)
.PHONY: clean
## clean: Clean projects and previous builds
clean:
@rm -rf bin/*
.PHONY: deps
## deps: Download modules
deps:
@go mod download
.PHONY: watch
## watch: Reload the app whenever the source changes
watch:
@which reflex > /dev/null || (go install github.com/cespare/reflex@latest)
reflex -s -r '\.go$$' make run
.PHONY: test
## test: Run all tests
test:
@go test -v ./...
.PHONY: help
all: help
## help: show this help message
help: Makefile
@echo
@echo " Choose a command to run:"
@echo
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
@echo