summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-08-08 13:08:27 +0200
committerGitHub <noreply@github.com>2019-08-08 13:08:27 +0200
commit31bfb12aec6123bd97e84b2067096b09676ca6ac (patch)
tree27a941e341074fee753d818a974c0fadf66bab88 /Makefile
parent41de7b14e0c69be15a7f19c69d5bfb374be62466 (diff)
parent096af85278967421533ffa9975078eccd57b5b5d (diff)
downloadpodman-31bfb12aec6123bd97e84b2067096b09676ca6ac.tar.gz
podman-31bfb12aec6123bd97e84b2067096b09676ca6ac.tar.bz2
podman-31bfb12aec6123bd97e84b2067096b09676ca6ac.zip
Merge pull request #3757 from lsm5/makeinstall
add make to make installs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 29eb9b3af..dbc10aa8c 100644
--- a/Makefile
+++ b/Makefile
@@ -333,12 +333,12 @@ changelog: ## Generate changelog
install: .gopathok install.bin install.remote install.man install.cni install.systemd ## Install binaries to system locations
-install.remote:
+install.remote: podman-remote
install ${SELINUXOPT} -d -m 755 $(DESTDIR)$(BINDIR)
install ${SELINUXOPT} -m 755 bin/podman-remote $(DESTDIR)$(BINDIR)/podman-remote
test -z "${SELINUXOPT}" || chcon --verbose --reference=$(DESTDIR)$(BINDIR)/podman bin/podman-remote
-install.bin:
+install.bin: podman
install ${SELINUXOPT} -d -m 755 $(DESTDIR)$(BINDIR)
install ${SELINUXOPT} -m 755 bin/podman $(DESTDIR)$(BINDIR)/podman
test -z "${SELINUXOPT}" || chcon --verbose --reference=$(DESTDIR)$(BINDIR)/podman bin/podman