open-vault/vendor/github.com/go-ldap/ldap/Makefile

69 lines
1.3 KiB
Makefile
Raw Normal View History

2016-07-23 00:11:47 +00:00
.PHONY: default install build test quicktest fmt vet lint
2017-02-02 21:19:55 +00:00
GO_VERSION := $(shell go version | cut -d' ' -f3 | cut -d. -f2)
# Only use the `-race` flag on newer versions of Go
IS_OLD_GO := $(shell test $(GO_VERSION) -le 2 && echo true)
ifeq ($(IS_OLD_GO),true)
RACE_FLAG :=
else
2017-10-27 19:06:04 +00:00
RACE_FLAG := -race -cpu 1,2,4
2017-02-02 21:19:55 +00:00
endif
2016-07-23 00:11:47 +00:00
default: fmt vet lint build quicktest
install:
go get -t -v ./...
build:
go build -v ./...
test:
2017-02-02 21:19:55 +00:00
go test -v $(RACE_FLAG) -cover ./...
2016-07-23 00:11:47 +00:00
quicktest:
go test ./...
# Capture output and force failure when there is non-empty output
fmt:
@echo gofmt -l .
@OUTPUT=`gofmt -l . 2>&1`; \
if [ "$$OUTPUT" ]; then \
echo "gofmt must be run on the following files:"; \
echo "$$OUTPUT"; \
exit 1; \
fi
# Only run on go1.5+
vet:
2018-10-15 22:25:08 +00:00
@go tool -n vet >/dev/null 2>&1; \
if [ $$? -eq 0 ]; then \
echo "go vet" ; \
go tool vet \
-atomic \
-bool \
-copylocks \
-nilfunc \
-printf \
-shadow \
-rangeloops \
-unreachable \
-unsafeptr \
-unusedresult \
. ; \
fi ;
2016-07-23 00:11:47 +00:00
# https://github.com/golang/lint
# go get github.com/golang/lint/golint
# Capture output and force failure when there is non-empty output
# Only run on go1.5+
lint:
@echo golint ./...
2018-10-15 22:25:08 +00:00
@OUTPUT=`command -v golint >/dev/null 2>&1 && golint ./... 2>&1`; \
2016-07-23 00:11:47 +00:00
if [ "$$OUTPUT" ]; then \
echo "golint errors:"; \
echo "$$OUTPUT"; \
exit 1; \
fi