Makefile: fix phony targets
Quite a few were missing, one (lint) was out of (alphabetic) order. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
parent
47913957f8
commit
b7bf95ebfb
15
Makefile
15
Makefile
|
|
@ -3,11 +3,19 @@ export GOPROXY=https://proxy.golang.org
|
||||||
|
|
||||||
.PHONY: \
|
.PHONY: \
|
||||||
all \
|
all \
|
||||||
|
binary \
|
||||||
clean \
|
clean \
|
||||||
|
codespell \
|
||||||
|
containers-storage \
|
||||||
|
cross \
|
||||||
default \
|
default \
|
||||||
docs \
|
docs \
|
||||||
|
gccgo \
|
||||||
help \
|
help \
|
||||||
|
install \
|
||||||
|
install.docs \
|
||||||
install.tools \
|
install.tools \
|
||||||
|
lint \
|
||||||
local-binary \
|
local-binary \
|
||||||
local-cross \
|
local-cross \
|
||||||
local-gccgo \
|
local-gccgo \
|
||||||
|
|
@ -15,8 +23,11 @@ export GOPROXY=https://proxy.golang.org
|
||||||
local-test-integration \
|
local-test-integration \
|
||||||
local-test-unit \
|
local-test-unit \
|
||||||
local-validate \
|
local-validate \
|
||||||
lint \
|
test-integration \
|
||||||
vendor
|
test-unit \
|
||||||
|
validate \
|
||||||
|
vendor \
|
||||||
|
vendor-in-container
|
||||||
|
|
||||||
PACKAGE := github.com/containers/storage
|
PACKAGE := github.com/containers/storage
|
||||||
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
|
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue