broadcast/Makefile

18 lines
191 B
Makefile
Raw Normal View History

VERSION ?= dev
GO ?= go
build: ./bin ui-build
$(GO) build -o ./bin ./cmd/broadcast
./bin:
mkdir -p bin
ui-%:
cd ui && make $*
2023-03-08 22:22:07 +01:00
dev:
docker compose up
dev-build:
docker compose build