mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-28 07:56:18 +00:00
20 lines
236 B
Makefile
20 lines
236 B
Makefile
# note: call scripts from /scripts
|
|
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)
|