72 lines
1.2 KiB
Makefile
72 lines
1.2 KiB
Makefile
.PHONY: \
|
|
glide \
|
|
deps \
|
|
update \
|
|
build \
|
|
install \
|
|
all \
|
|
vendor \
|
|
lint \
|
|
vet \
|
|
fmt \
|
|
fmtcheck \
|
|
pretest \
|
|
test \
|
|
cov \
|
|
clean
|
|
|
|
SRCS = $(shell git ls-files '*.go')
|
|
PKGS = ./. ./config ./models ./report ./cveapi ./scan ./util ./commands ./cache
|
|
VERSION := $(shell git describe --tags --abbrev=0)
|
|
REVISION := $(shell git rev-parse --short HEAD)
|
|
LDFLAGS := -X 'main.version=$(VERSION)' \
|
|
-X 'main.revision=$(REVISION)'
|
|
|
|
glide:
|
|
go get github.com/Masterminds/glide
|
|
|
|
deps: glide
|
|
glide install
|
|
|
|
update: glide
|
|
glide update
|
|
|
|
build: main.go deps
|
|
go build -ldflags "$(LDFLAGS)" -o vuls $<
|
|
|
|
install: main.go deps
|
|
go install -ldflags "$(LDFLAGS)"
|
|
|
|
all: test
|
|
|
|
lint:
|
|
@ go get -v github.com/golang/lint/golint
|
|
$(foreach file,$(SRCS),golint $(file) || exit;)
|
|
|
|
vet:
|
|
# @-go get -v golang.org/x/tools/cmd/vet
|
|
$(foreach pkg,$(PKGS),go vet $(pkg);)
|
|
|
|
fmt:
|
|
gofmt -w $(SRCS)
|
|
|
|
fmtcheck:
|
|
$(foreach file,$(SRCS),gofmt -d $(file);)
|
|
|
|
pretest: lint vet fmtcheck
|
|
|
|
test: pretest
|
|
$(foreach pkg,$(PKGS),go test -v $(pkg) || exit;)
|
|
|
|
unused :
|
|
$(foreach pkg,$(PKGS),unused $(pkg);)
|
|
|
|
cov:
|
|
@ go get -v github.com/axw/gocov/gocov
|
|
@ go get golang.org/x/tools/cmd/cover
|
|
gocov test | gocov report
|
|
|
|
clean:
|
|
$(foreach pkg,$(PKGS),go clean $(pkg) || exit;)
|
|
|