Files
vmux/Makefile
Pierre Martin c921124bcc feat: sort sessions by workspace number in list output
Also restart daemon on make watch so new binary is used.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-23 20:42:10 +01:00

20 lines
225 B
Makefile

.PHONY: build test lint vet clean watch
build:
go build -o vmux ./...
test:
go test -v -race ./...
lint: vet
vet:
go vet ./...
watch: build
-./vmux stop 2>/dev/null
watch --color -n2 ./vmux list
clean:
rm -f vmux