summaryrefslogtreecommitdiff
path: root/Makefile
blob: c45bb2fabcfda4e33b91e59e0ac66d269dff740a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Simple go Makefile

.PHONY : all
all: build

.PHONY: build
build: clean
	go build

.PHONY: run
run:
	go run -race main.go

.PHONY: clean
clean:
	go clean

.PHONY: test
test:
	go test -v -count=1 -race ./...