rexforge/rex_server/Makefile
2025-01-26 11:21:57 +01:00

16 lines
162 B
Makefile

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)