7f21253f57
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
14 lines
215 B
Makefile
14 lines
215 B
Makefile
BUILDTAGS := selinux
|
|
|
|
check-gopath:
|
|
ifndef GOPATH
|
|
$(error GOPATH is not set)
|
|
endif
|
|
|
|
.PHONY: test
|
|
test: check-gopath
|
|
go test -timeout 3m -tags "${BUILDTAGS}" ${TESTFLAGS} -v ./...
|
|
|
|
.PHONY:
|
|
lint:
|
|
golint go-selinux
|