Commit 1c287000 authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

build: remove useless 'objs' targets



The .o files are always kept anyway, so there is no need for an explicit
rule.

Change-Id: Id1687ba89daabfda5802e4328deb127403277928
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent dba48294
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -50,8 +50,6 @@ OBJS = $(C_SRCS:.c=.o)

all : $(APP)

objs : $(OBJS)

$(APP) : $(OBJS) $(SPDK_LIBS)
	$(LINK_C)

+0 −2
Original line number Diff line number Diff line
@@ -55,8 +55,6 @@ OBJS = $(C_SRCS:.c=.o)

all : $(APP)

objs : $(OBJS)

$(APP) : $(OBJS) $(SPDK_LIBS)
	$(LINK_C)

+0 −2
Original line number Diff line number Diff line
@@ -46,8 +46,6 @@ LIB = libspdk_memory.a

all : $(LIB)

objs : $(OBJS)

clean :
	$(Q)rm -f $(LIB) $(OBJS) *.d

+0 −2
Original line number Diff line number Diff line
@@ -44,8 +44,6 @@ OBJS = $(C_OBJS)

all : libspdk_nvme.a

objs : $(OBJS)

clean :
	$(Q)rm -f libspdk_nvme.a $(OBJS) *.d

+0 −2
Original line number Diff line number Diff line
@@ -44,8 +44,6 @@ OBJS = $(C_OBJS)

all : libspdk_util.a

objs : $(OBJS)

clean :
	$(Q)rm -f libspdk_util.a $(OBJS) *.d

Loading