Commit 3d988d28 authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

build: use $(APP) target consistently



Replace $(UT_APP) in nvme.unittest.mk with $(APP); there is no actual
difference in the way they are used.

Change-Id: I039c2488ee998ee8b1a67af129045b66a97bc29c
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
parent 1c287000
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -44,15 +44,15 @@ CFLAGS += -I$(SPDK_ROOT_DIR)/lib -include $(SPDK_ROOT_DIR)/test/lib/nvme/unit/nv

LIBS += -lcunit -lpthread

UT_APP = $(TEST_FILE:.c=)
APP = $(TEST_FILE:.c=)

all: $(UT_APP)
all: $(APP)

$(UT_APP) : $(OBJS)
$(APP) : $(OBJS)
	$(LINK_C)

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

%.o: $(NVME_DIR)/%.c %.d $(MAKEFILE_LIST)
	$(COMPILE_C)