currency/Makefile

18 lines
156 B
Makefile
Raw Permalink Normal View History

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