diff --git a/rex_client/Makefile b/rex_client/Makefile
index 7e0d355..6a46642 100644
--- a/rex_client/Makefile
+++ b/rex_client/Makefile
@@ -1,10 +1,13 @@
 NAME = rexclient
 
-run:
+commit.txt:
+	go generate
+
+run: commit.txt
 	go run .
 
-debug:
+debug: commit.txt
 	go run -tags debug,hints .
 
-build:
+build: commit.txt
 	go build -tags no_emoji -trimpath -ldflags="-s -w" -buildvcs=false -o $(NAME)