From ef6108a7ebad1916acf22071fe629b1edf94d97c Mon Sep 17 00:00:00 2001 From: Seth Howell Date: Wed, 14 Aug 2019 15:07:25 -0700 Subject: [PATCH] lib: move notify_rpc under lib/notify This is part of a larger series aimed at simplifying/flattening the directory structure of the SPDK lib directory. The ultimate goal of this series is to properly create dynamic linker dependencies between all spdk shared objects. Change-Id: I6beb7103404ae2c24a3d25dd93a1061680c7176c Signed-off-by: Seth Howell Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/465209 Tested-by: SPDK CI Jenkins Reviewed-by: Shuhei Matsumoto Reviewed-by: Darek Stojaczyk Reviewed-by: Jim Harris --- lib/event/rpc/Makefile | 2 +- lib/notify/Makefile | 2 +- lib/{event/rpc => notify}/notify_rpc.c | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename lib/{event/rpc => notify}/notify_rpc.c (100%) diff --git a/lib/event/rpc/Makefile b/lib/event/rpc/Makefile index 4e429409a..fcba526a0 100644 --- a/lib/event/rpc/Makefile +++ b/lib/event/rpc/Makefile @@ -34,7 +34,7 @@ SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..) include $(SPDK_ROOT_DIR)/mk/spdk.common.mk -C_SRCS = app_rpc.c subsystem_rpc.c notify_rpc.c +C_SRCS = app_rpc.c subsystem_rpc.c LIBNAME = app_rpc include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk diff --git a/lib/notify/Makefile b/lib/notify/Makefile index 987542594..3cc6f9a85 100644 --- a/lib/notify/Makefile +++ b/lib/notify/Makefile @@ -34,7 +34,7 @@ SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..) include $(SPDK_ROOT_DIR)/mk/spdk.common.mk -C_SRCS = notify.c +C_SRCS = notify.c notify_rpc.c LIBNAME = notify include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk diff --git a/lib/event/rpc/notify_rpc.c b/lib/notify/notify_rpc.c similarity index 100% rename from lib/event/rpc/notify_rpc.c rename to lib/notify/notify_rpc.c