18 lines
261 B
Makefile
18 lines
261 B
Makefile
NAME = rexserver
|
|
|
|
REX_VERSION ?= $(shell bash ../generate_version.sh)
|
|
|
|
build: commit.txt
|
|
go build -ldflags="-X main.rex_version=$(REX_VERSION)" -o $(NAME)
|
|
|
|
run: commit.txt
|
|
go run .
|
|
|
|
debug: commit.txt
|
|
go run .
|
|
|
|
commit.txt:
|
|
go generate
|
|
|
|
clean:
|
|
rm -f $(NAME)
|