2015-09-21 15:52:41 +00:00
|
|
|
#
|
|
|
|
# BSD LICENSE
|
|
|
|
#
|
2016-01-26 17:47:22 +00:00
|
|
|
# Copyright (c) Intel Corporation.
|
2015-09-21 15:52:41 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# * Neither the name of Intel Corporation nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
|
2016-03-08 17:59:56 +00:00
|
|
|
S :=
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
SPDK_ROOT_DIR := $(CURDIR)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
2018-08-14 17:56:26 +00:00
|
|
|
DIRS-y += lib
|
|
|
|
DIRS-$(CONFIG_SHARED) += shared_lib
|
|
|
|
DIRS-y += examples app include
|
2018-03-06 22:39:04 +00:00
|
|
|
DIRS-$(CONFIG_TESTS) += test
|
2019-01-13 20:28:21 +00:00
|
|
|
DIRS-$(CONFIG_IPSEC_MB) += ipsecbuild
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-10-22 08:57:32 +00:00
|
|
|
.PHONY: all clean $(DIRS-y) include/spdk/config.h mk/config.mk mk/cc.mk \
|
|
|
|
cc_version cxx_version .libs_only_other .ldflags ldflags
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-07-19 19:43:14 +00:00
|
|
|
ifeq ($(SPDK_ROOT_DIR)/lib/env_dpdk,$(CONFIG_ENV))
|
2017-05-08 22:07:13 +00:00
|
|
|
ifeq ($(CURDIR)/dpdk/build,$(CONFIG_DPDK_DIR))
|
2018-02-07 20:12:05 +00:00
|
|
|
ifneq ($(SKIP_DPDK_BUILD),1)
|
2017-05-08 22:07:13 +00:00
|
|
|
DPDKBUILD = dpdkbuild
|
|
|
|
DIRS-y += dpdkbuild
|
|
|
|
endif
|
2018-02-07 20:12:05 +00:00
|
|
|
endif
|
2018-07-19 19:43:14 +00:00
|
|
|
endif
|
2017-05-08 22:07:13 +00:00
|
|
|
|
2018-09-05 19:58:01 +00:00
|
|
|
ifeq ($(CONFIG_SHARED),y)
|
|
|
|
LIB = shared_lib
|
|
|
|
else
|
|
|
|
LIB = lib
|
|
|
|
endif
|
|
|
|
|
2019-01-13 20:28:21 +00:00
|
|
|
ifeq ($(CONFIG_IPSEC_MB),y)
|
|
|
|
LIB += ipsecbuild
|
|
|
|
endif
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
all: $(DIRS-y)
|
|
|
|
clean: $(DIRS-y)
|
2016-03-24 20:27:53 +00:00
|
|
|
$(Q)rm -f mk/cc.mk
|
2018-09-28 12:29:04 +00:00
|
|
|
$(Q)rm -f include/spdk/config.h
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2017-11-15 17:36:36 +00:00
|
|
|
install: all
|
|
|
|
$(Q)echo "Installed to $(DESTDIR)$(CONFIG_PREFIX)"
|
|
|
|
|
2018-06-11 19:40:29 +00:00
|
|
|
shared_lib: lib
|
2017-05-08 22:07:13 +00:00
|
|
|
lib: $(DPDKBUILD)
|
2018-09-05 19:58:01 +00:00
|
|
|
app: $(LIB)
|
|
|
|
test: $(LIB)
|
|
|
|
examples: $(LIB)
|
2017-08-21 16:37:37 +00:00
|
|
|
pkgdep:
|
|
|
|
sh ./scripts/pkgdep.sh
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-09-28 12:29:04 +00:00
|
|
|
$(DIRS-y): mk/cc.mk include/spdk/config.h
|
2016-03-24 20:27:53 +00:00
|
|
|
|
|
|
|
mk/cc.mk:
|
2019-01-02 12:47:47 +00:00
|
|
|
$(Q)scripts/detect_cc.sh --cc=$(CC) --cxx=$(CXX) --lto=$(CONFIG_LTO) --ld=$(LD) > $@.tmp; \
|
2016-03-24 20:27:53 +00:00
|
|
|
cmp -s $@.tmp $@ || mv $@.tmp $@ ; \
|
|
|
|
rm -f $@.tmp
|
2016-06-07 18:31:12 +00:00
|
|
|
|
2018-09-21 14:32:36 +00:00
|
|
|
include/spdk/config.h: mk/config.mk scripts/genconfig.py
|
2018-01-27 23:29:16 +00:00
|
|
|
$(Q)PYCMD=$$(cat PYTHON_COMMAND 2>/dev/null) ; \
|
|
|
|
test -z "$$PYCMD" && PYCMD=python ; \
|
2018-09-25 11:04:46 +00:00
|
|
|
echo "#ifndef SPDK_CONFIG_H" > $@.tmp; \
|
|
|
|
echo "#define SPDK_CONFIG_H" >> $@.tmp; \
|
|
|
|
$$PYCMD scripts/genconfig.py $(MAKEFLAGS) >> $@.tmp; \
|
|
|
|
echo "#endif /* SPDK_CONFIG_H */" >> $@.tmp; \
|
2016-06-07 18:31:12 +00:00
|
|
|
cmp -s $@.tmp $@ || mv $@.tmp $@ ; \
|
|
|
|
rm -f $@.tmp
|
|
|
|
|
2018-02-12 15:53:33 +00:00
|
|
|
cc_version: mk/cc.mk
|
|
|
|
$(Q)echo "SPDK using CC=$(CC)"; $(CC) -v
|
|
|
|
|
|
|
|
cxx_version: mk/cc.mk
|
|
|
|
$(Q)echo "SPDK using CXX=$(CXX)"; $(CXX) -v
|
|
|
|
|
2018-10-05 14:01:40 +00:00
|
|
|
.libs_only_other:
|
|
|
|
$(Q)echo -n '$(SYS_LIBS) '
|
|
|
|
$(Q)if [ "$(CONFIG_SHARED)" = "y" ]; then \
|
|
|
|
echo -n '-lspdk '; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
.ldflags:
|
|
|
|
$(Q)echo -n '$(LDFLAGS) '
|
|
|
|
|
|
|
|
ldflags: .ldflags .libs_only_other
|
|
|
|
$(Q)echo ''
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|