teamlead-dashboard/Makefile

20 lines
236 B
Makefile
Raw Normal View History

2024-01-29 21:01:31 +00:00
# note: call scripts from /scripts
2024-01-29 22:03:18 +00:00
GO_MAIN=./cmd/tld/tld.go
GO_TEST=./test
install:
go install $(GO_MAIN)
run:
go run $(GO_MAIN)
build:
go build $(GO_MAIN)
test:
go test ${GO_TEST}
format:
go fmt $(GO_MAIN)
go fmt $(GO_TEST)