10 lines
156 B
Makefile
10 lines
156 B
Makefile
NAME = rexclient
|
|
|
|
run:
|
|
go run .
|
|
|
|
debug:
|
|
go run -tags debug,hints .
|
|
|
|
build:
|
|
go build -tags no_emoji -trimpath -ldflags="-s -w" -buildvcs=false -o $(NAME)
|