From 317becd74b222fc398240a89471547ccf00b8078 Mon Sep 17 00:00:00 2001 From: paul luse Date: Mon, 12 Feb 2018 12:09:53 -0500 Subject: [PATCH] example: fixup blob example Makefiles App line was missing some stuff so that the apps weren't rebuilding when underlying dependecies changed. Change-Id: Idecc6296caf48229dfadd57b9da5768f29c9d9e1 Signed-off-by: paul luse Reviewed-on: https://review.gerrithub.io/399456 Reviewed-by: Daniel Verkamp Tested-by: SPDK Automated Test System Reviewed-by: Jim Harris --- examples/blob/cli/Makefile | 2 +- examples/blob/hello_world/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/blob/cli/Makefile b/examples/blob/cli/Makefile index 440866b05..067481b33 100644 --- a/examples/blob/cli/Makefile +++ b/examples/blob/cli/Makefile @@ -47,7 +47,7 @@ LIBS += $(SPDK_LIB_LINKER_ARGS) $(ENV_LINKER_ARGS) all : $(APP) -$(APP) : $(OBJS) $(SPDK_LIB_FILES) +$(APP) : $(OBJS) $(SPDK_LIB_FILES) $(BLOCKDEV_MODULES_FILES) $(LINKER_MODULES) $(ENV_LIBS) $(LINK_C) clean : diff --git a/examples/blob/hello_world/Makefile b/examples/blob/hello_world/Makefile index 34865d91b..15cfef2d5 100644 --- a/examples/blob/hello_world/Makefile +++ b/examples/blob/hello_world/Makefile @@ -47,7 +47,7 @@ LIBS += $(SPDK_LIB_LINKER_ARGS) $(ENV_LINKER_ARGS) all : $(APP) -$(APP) : $(OBJS) $(SPDK_LIB_FILES) +$(APP) : $(OBJS) $(SPDK_LIB_FILES) $(BLOCKDEV_MODULES_FILES) $(LINKER_MODULES) $(ENV_LIBS) $(LINK_C) clean :