mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-25 08:16:33 +00:00
25 lines
323 B
Makefile
25 lines
323 B
Makefile
.PHONY: all vet lint build test clean static
|
|
|
|
all: build test vet lint
|
|
|
|
vet:
|
|
go vet ./...
|
|
|
|
lint:
|
|
golint .
|
|
|
|
build:
|
|
go build
|
|
|
|
test:
|
|
go test
|
|
|
|
clean:
|
|
go clean
|
|
|
|
static:
|
|
go get github.com/mjibson/esc
|
|
cd ../client && make build && rm -f dist/.htaccess
|
|
esc -o static.go -prefix ../client/dist ../client/dist
|
|
${MAKE} build
|