Commit bb24ce82 authored by Jim Harris's avatar Jim Harris Committed by Daniel Verkamp
Browse files

build: add @: to remaining 'all' targets



It is not ideal to have to add this in a bunch of
different Makefiles, but further consolidation of
Makefiles is going to be a more arduous process.

With this change, rebuilding SPDK after no changes
will result in no output - all of the "Nothing to
be done for 'all'" messages have been removed.  Note
that DPDK build output still remains - this can be
suppressed by either using an out-of-tree DPDK, or
using SKIP_DPDK_BUILD=1 when using the in-tree DPDK
submodule.

Signed-off-by: default avatarJim Harris <james.r.harris@intel.com>
Change-Id: Ib1d45432f2baaa1d9c1b9509906ee1e77966d3ca

Reviewed-on: https://review.gerrithub.io/399918


Reviewed-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
parent 304bed6d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -58,6 +58,7 @@ LIBS += $(SPDK_LIB_LINKER_ARGS) -lcrypto
LIBS += $(ENV_LINKER_ARGS)

all : $(APP)
	@:

$(APP) : $(OBJS) $(SPDK_LIB_FILES) $(ENV_LIBS) $(BLOCKDEV_MODULES_FILES) $(COPY_MODULES_FILES)
	$(LINK_C)
+1 −0
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ CXX_SRCS = iscsi_top.cpp
APP = iscsi_top

all: $(APP)
	@:

$(APP) : $(OBJS)
	$(LINK_CXX)
+1 −0
Original line number Diff line number Diff line
@@ -53,6 +53,7 @@ LIBS += $(BLOCKDEV_MODULES_LINKER_ARGS) \
	$(SPDK_LIB_LINKER_ARGS) $(ENV_LINKER_ARGS)

all : $(APP)
	@:

$(APP) : $(OBJS) $(SPDK_LIB_FILES) $(SPDK_WHOLE_LIBS) $(BLOCKDEV_MODULES_FILES) $(LINKER_MODULES) $(ENV_LIBS)
	$(LINK_C)
+1 −0
Original line number Diff line number Diff line
@@ -40,6 +40,7 @@ CXX_SRCS := trace.cpp
APP = spdk_trace

all: $(APP)
	@:

$(APP): $(OBJS) $(SPDK_LIBS)
	$(LINK_CXX)
+1 −0
Original line number Diff line number Diff line
@@ -51,6 +51,7 @@ LIBS += $(SPDK_LIB_LINKER_ARGS)
LIBS += $(ENV_LINKER_ARGS)

all : $(APP)
	@:

$(APP) : $(OBJS) $(SPDK_LIB_FILES) $(ENV_LIBS) $(BLOCKDEV_MODULES_FILES) $(COPY_MODULES_FILES)
	$(LINK_C)
Loading