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: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2015-11-10 16:10:03 -07:00
parent 1c28700070
commit 3d988d287a

View File

@ -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)