inclusion of Makefile

Signed-off-by: Michael <michael.lindman@gmail.com>
This commit is contained in:
Michael 2022-03-22 19:57:33 +00:00
parent 87d9a931a3
commit 6bca9606f6

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
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