18 lines
156 B
Makefile
18 lines
156 B
Makefile
APP=currency
|
|
|
|
build:
|
|
go build
|
|
|
|
run: build
|
|
./$(APP)
|
|
|
|
doc:
|
|
godoc -http=:6090 -index
|
|
|
|
fmt:
|
|
gofmt -l -s .
|
|
|
|
clean:
|
|
go clean
|
|
|
|
.PHONY: run doc build fmt clean |