rexforge/rex_client/Makefile
2025-01-26 08:50:15 +01:00

16 lines
238 B
Makefile

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