Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@openvz.org>2016-11-25 18:11:54 +0300
committerAndrei Vagin <avagin@virtuozzo.com>2017-03-15 00:06:13 +0300
commit474289f04006e2c138a9e754c0b00df4e19ed09a (patch)
treea0c21df2a1508ca4ef233dea07bb73fc92a62066 /Makefile.install
parent5a7c137bb77fcdb6ad15450c6a0e0266f1b2c336 (diff)
compel: Add installation
To ship plugins, libs and dev headers. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
Diffstat (limited to 'Makefile.install')
-rw-r--r--Makefile.install9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.install b/Makefile.install
index 7c3da2027..9e78367a3 100644
--- a/Makefile.install
+++ b/Makefile.install
@@ -36,7 +36,12 @@ install-criu: criu
$(Q) $(MAKE) $(build)=criu install
.PHONY: install-criu
-install: install-man install-lib install-criu
+install-compel: $(compel-install-targets)
+ $(Q) $(MAKE) $(build)=compel install
+ $(Q) $(MAKE) $(build)=compel/plugins install
+.PHONY: install-compel
+
+install: install-man install-lib install-criu install-compel
@true
.PHONY: install
@@ -44,4 +49,6 @@ uninstall:
$(Q) $(MAKE) -C Documentation $@
$(Q) $(MAKE) $(build)=lib $@
$(Q) $(MAKE) $(build)=criu $@
+ $(Q) $(MAKE) $(build)=compel $@
+ $(Q) $(MAKE) $(build)=compel/plugins $@
.PHONY: uninstall