Live video on the AT Protocol

Makefile: only make a uuid once

fixes #21

+2 -1
+2 -1
Makefile
··· 5 5 default: app node 6 6 7 7 VERSION?=$(shell ./util/version.sh) 8 + UUID?=$(shell go run ./pkg/config/uuid/uuid.go) 8 9 9 10 .PHONY: version 10 11 version: ··· 20 21 21 22 .PHONY: node 22 23 node: 23 - go build -ldflags="-X 'main.Version=$(VERSION)' -X 'main.BuildTime=$(shell date +%s)' -X 'main.UUID=$(shell go run ./pkg/config/uuid/uuid.go)'" -o $(OUT_DIR)/aquareum ./cmd/aquareum 24 + go build -ldflags="-X 'main.Version=$(VERSION)' -X 'main.BuildTime=$(shell date +%s)' -X 'main.UUID=$(UUID)'" -o $(OUT_DIR)/aquareum ./cmd/aquareum 24 25 25 26 .PHONY: test 26 27 test: