diff options
author | Morten Linderud <morten@linderud.pw> | 2021-03-31 00:35:26 +0200 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-04-16 13:31:25 -0400 |
commit | 49a6e326a7731e453c1ea65e39d69c027685d9d0 (patch) | |
tree | b0bf54c52b9e91c27ad374911d9cafcdeb712ac2 | |
parent | f78d8d9cbaa8c452e4e37c00389b65caf393eb5d (diff) | |
download | podman-49a6e326a7731e453c1ea65e39d69c027685d9d0.tar.gz podman-49a6e326a7731e453c1ea65e39d69c027685d9d0.tar.bz2 podman-49a6e326a7731e453c1ea65e39d69c027685d9d0.zip |
Makefile: introduce install.docker-full
The split of install.docker and install.docker-docs makes some sense but
there should be some way to specify both for packagers.
This introduces `make install.docker-full` which installs both the
docker binary and the documentation.
Signed-off-by: Morten Linderud <morten@linderud.pw>
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -557,6 +557,9 @@ install.docker-docs-nobuild: .PHONY: install.docker-docs install.docker-docs: docker-docs install.docker-docs-nobuild +.PHONY: install.docker-full +install.docker-full: install.docker install.docker-docs + .PHONY: install.systemd ifneq (,$(findstring systemd,$(BUILDTAGS))) install.systemd: |