From f29a97c4dfb20a92b01f64089cb164aaa2ee85e5 Mon Sep 17 00:00:00 2001 From: Greg Szabo Date: Wed, 14 Jun 2017 19:31:19 +0000 Subject: [PATCH] Added install options to Makefile --- devops/rpmbuild/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/devops/rpmbuild/Makefile b/devops/rpmbuild/Makefile index 65d98d47..21d59cc3 100644 --- a/devops/rpmbuild/Makefile +++ b/devops/rpmbuild/Makefile @@ -35,11 +35,13 @@ endif binaries = tendermint basecoin ethermint build-binaries = build-tendermint build-basecoin build-ethermint package-binaries = package-tendermint package-basecoin package-ethermint +install-binaries = install-tendermint install-basecoin install-ethermint all: $(binaries) build: $(build-binaries) package: $(package-binaries) -$(binaries): %: build-% package-% ; +install: $(install-binaries) +$(binaries): %: build-% package-% install-% ; ### # Building the binaries is not in the spec file, because in the spec file you already need to know the version number