blob: 480ce139d853858531d962e93031ed66fefe19bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
BIN=$(shell pwd | xargs basename)
.PHONY: default
default: build
.PHONY: build
build:
go build
.PHONY: clean
clean:
go clean
.PHONY: install
install: build
install $(BIN) /usr/local/bin
|