Fix #2556. Change-Id: I843dace8408d09bdb9222a37731a95732736bb78 Signed-off-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13041 Community-CI: Mellanox Build Bot Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
45 lines
966 B
Makefile
45 lines
966 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (c) Intel Corporation.
|
|
# All rights reserved.
|
|
#
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.app_vars.mk
|
|
|
|
# Applications in app/ go into build/bin/.
|
|
# Applications in examples/ go into build/examples/.
|
|
# Use findstring to identify if the current directory is in the app
|
|
# or examples directory. If it is, change the APP location.
|
|
APP_NAME := $(notdir $(APP))
|
|
ifneq (,$(findstring $(SPDK_ROOT_DIR)/app,$(CURDIR)))
|
|
APP := $(APP_NAME:%=$(SPDK_ROOT_DIR)/build/bin/%)
|
|
else
|
|
ifneq (,$(findstring $(SPDK_ROOT_DIR)/examples,$(CURDIR)))
|
|
APP := $(APP_NAME:%=$(SPDK_ROOT_DIR)/build/examples/%)
|
|
endif
|
|
endif
|
|
|
|
APP := $(APP)$(EXEEXT)
|
|
|
|
LIBS += $(SPDK_LIB_LINKER_ARGS)
|
|
|
|
CLEAN_FILES = $(APP)
|
|
|
|
all : $(APP)
|
|
@:
|
|
|
|
install: empty_rule
|
|
|
|
uninstall: empty_rule
|
|
|
|
# To avoid overwriting warning
|
|
empty_rule:
|
|
@:
|
|
|
|
$(APP) : $(OBJS) $(SPDK_LIB_FILES) $(ENV_LIBS)
|
|
$(LINK_C)
|
|
|
|
clean :
|
|
$(CLEAN_C) $(CLEAN_FILES)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.deps.mk
|