make: clean up .PHONY targets list
Make the list of .PHONY targets consistent with the actual Makefile targets. Update The README with the correct make target for the CLI wrapper. Signed-off-by: Marco Vedovati <mvedovati@suse.com>
This commit is contained in:
parent
f4127d28e4
commit
32b5bb1615
3
Makefile
3
Makefile
|
|
@ -1,4 +1,4 @@
|
||||||
.PHONY: all binary build build-binary build-gccgo cross default docs gccgo test test-integration-cli test-unit validate help win tgz
|
.PHONY: all binary clean cross default docs gccgo help install.tools local-binary local-cross local-gccgo local-test-integration local-test-unit local-validate test test-integration test-unit validate
|
||||||
|
|
||||||
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)
|
||||||
|
|
@ -81,7 +81,6 @@ local-validate: ## validate DCO and gofmt on the host
|
||||||
validate: ## validate DCO, gofmt, ./pkg/ isolation, golint,\ngo vet and vendor using VMs
|
validate: ## validate DCO, gofmt, ./pkg/ isolation, golint,\ngo vet and vendor using VMs
|
||||||
$(RUNINVM) make local-$@
|
$(RUNINVM) make local-$@
|
||||||
|
|
||||||
.PHONY: install.tools
|
|
||||||
install.tools:
|
install.tools:
|
||||||
go get -u $(BUILDFLAGS) github.com/cpuguy83/go-md2man
|
go get -u $(BUILDFLAGS) github.com/cpuguy83/go-md2man
|
||||||
go get -u $(BUILDFLAGS) github.com/vbatts/git-validation
|
go get -u $(BUILDFLAGS) github.com/vbatts/git-validation
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
layers, container images, and containers. A `containers-storage` CLI wrapper
|
layers, container images, and containers. A `containers-storage` CLI wrapper
|
||||||
is also included for manual and scripting use.
|
is also included for manual and scripting use.
|
||||||
|
|
||||||
To build the CLI wrapper, use 'make build-binary'.
|
To build the CLI wrapper, use 'make binary'.
|
||||||
|
|
||||||
Operations which use VMs expect to launch them using 'vagrant', defaulting to
|
Operations which use VMs expect to launch them using 'vagrant', defaulting to
|
||||||
using its 'libvirt' provider. The boxes used are also available for the
|
using its 'libvirt' provider. The boxes used are also available for the
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue