Files
vmux/Makefile
2026-03-23 19:54:44 +01:00

19 lines
199 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
watch --color -n2 ./vmux list
clean:
rm -f vmux