diff --git a/Makefile b/Makefile index cbe46f5..8162a33 100644 --- a/Makefile +++ b/Makefile @@ -8,11 +8,9 @@ DEPLOY_ACCOUNT := appleboy DEPLOY_IMAGE := $(EXECUTABLE) TARGETS ?= linux darwin windows -PACKAGES ?= $(shell $(GO) list ./...) SOURCES ?= $(shell find . -name "*.go" -type f) TAGS ?= LDFLAGS ?= -X 'main.Version=$(VERSION)' -TMPDIR := $(shell mktemp -d 2>/dev/null || mktemp -d -t 'tempdir') ifneq ($(shell uname), Darwin) EXTLDFLAGS = -extldflags "-static" $(null) @@ -32,7 +30,7 @@ fmt: $(GOFMT) -w $(SOURCES) vet: - $(GO) vet $(PACKAGES) + $(GO) vet ./... lint: @hash revive > /dev/null 2>&1; if [ $$? -ne 0 ]; then \ @@ -64,7 +62,7 @@ fmt-check: fi; test: fmt-check - @$(GO) test -v -cover -coverprofile coverage.txt $(PACKAGES) && echo "\n==>\033[32m Ok\033[m\n" || exit 1 + @$(GO) test -v -cover -coverprofile coverage.txt ./... && echo "\n==>\033[32m Ok\033[m\n" || exit 1 install: $(SOURCES) $(GO) install -v -tags '$(TAGS)' -ldflags '$(EXTLDFLAGS)-s -w $(LDFLAGS)'