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:
authorPavel Emelyanov <xemul@virtuozzo.com>2017-03-06 21:38:17 +0300
committerAndrei Vagin <avagin@virtuozzo.com>2017-03-15 09:36:09 +0300
commit6794c8c2a9e94f0de19da306f586589c3c9809cf (patch)
treea84c16e81f16ddedef248bae72988bb71af7f36d /Makefile.compel
parentb502d7fd6b14ab8c006d650398264c8196d44787 (diff)
compel: Add fds plugin (v2)
This is just export by reasonable name of the existing code, that sends and receives FDs via compel RPC socket. v2: Rebase on recent criu-dev Fix parallel build Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
Diffstat (limited to 'Makefile.compel')
-rw-r--r--Makefile.compel7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.compel b/Makefile.compel
index 408f0a701..ab479f79d 100644
--- a/Makefile.compel
+++ b/Makefile.compel
@@ -22,7 +22,7 @@ compel-deps += compel/include/asm
compel-deps += $(COMPEL_VERSION_HEADER)
compel-deps += $(CONFIG_HEADER)
compel-deps += include/common/asm
-compel-plugins += compel/plugins/std.built-in.o
+compel-plugins += compel/plugins/std.built-in.o compel/plugins/fds.built-in.o
LIBCOMPEL_SO := libcompel.so
LIBCOMPEL_A := libcompel.a
@@ -50,7 +50,10 @@ compel/plugins/%: $(compel-deps) .FORCE
compel/plugins/std.built-in.o: $(compel-deps) .FORCE
$(Q) $(MAKE) $(build)=compel/plugins $@
-compel/plugins/shmem.built-in.o: $(compel-deps) .FORCE
+compel/plugins/shmem.built-in.o: $(compel-deps) compel/plugins/std.built-in.o .FORCE
+ $(Q) $(MAKE) $(build)=compel/plugins $@
+
+compel/plugins/fds.built-in.o: $(compel-deps) compel/plugins/std.built-in.o .FORCE
$(Q) $(MAKE) $(build)=compel/plugins $@
compel/compel: compel/built-in.o compel/$(LIBCOMPEL_A) | $(compel-deps)