7 lines
154 B
Makefile
7 lines
154 B
Makefile
|
VERSION ?= $(shell git describe --tags --always 2>/dev/null)
|
||
|
|
||
|
build:
|
||
|
go build -ldflags "-X main.Version=$(VERSION)" -o ./bin/nezabx
|
||
|
|
||
|
clean:
|
||
|
rm -rf ./bin
|