Files
vmux/Makefile
T

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