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:
parent
1c28700070
commit
3d988d287a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user