diff --git a/Makefile b/Makefile index 1d540182..770834b7 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,6 @@ DOC_FILES := \ default: docs -.PHONY: docs docs: $(OUTPUT_DIRNAME)/$(DOC_FILENAME).pdf $(OUTPUT_DIRNAME)/$(DOC_FILENAME).html ifeq "$(strip $(PANDOC))" '' @@ -56,8 +55,6 @@ HOST_GOLANG_VERSION = $(shell go version | cut -d ' ' -f3 | cut -c 3-) # this variable is used like a function. First arg is the minimum version, Second arg is the version to be checked. ALLOWED_GO_VERSION = $(shell test '$(shell /bin/echo -e "$(1)\n$(2)" | sort -V | head -n1)' = '$(1)' && echo 'true') -.PHONY: test .govet .golint .gitvalidation - test: .govet .golint .gitvalidation .govet: @@ -80,8 +77,6 @@ else git-validation -v -run DCO,short-subject,dangling-whitespace -range $(EPOCH_TEST_COMMIT)..HEAD endif - -.PHONY: install.tools install.tools: .install.golint .install.gitvalidation # golint does not even build for xx && mv xx {} || echo "skipping invalid {}"' \; @@ -21,7 +18,6 @@ validate: validate.go go get -d ./... go build ./validate.go -.PHONY: test test: validate $(TESTS) for TYPE in $$(ls test); \ do \ @@ -50,6 +46,5 @@ test: validate $(TESTS) done; \ done -.PHONY: clean clean: rm -f validate