NAME = rexserver

build: commit.txt
	go build -o $(NAME)

run: commit.txt
	go run .

debug: commit.txt
	go run .

commit.txt:
	go generate

clean:
	rm -f $(NAME)