16 lines
240 B
Makefile
16 lines
240 B
Makefile
NAME = rexclient
|
|
|
|
run: commit.txt
|
|
go run .
|
|
|
|
debug: commit.txt
|
|
go run -tags debug,hints .
|
|
|
|
build: commit.txt
|
|
go build -tags no_emoji -trimpath -ldflags="-s -w" -buildvcs=false -o $(NAME)
|
|
|
|
commit.txt:
|
|
go generate
|
|
|
|
clean:
|
|
rm -f rexclient
|