2015-09-21 08:52:41 -07:00
|
|
|
#
|
|
|
|
# BSD LICENSE
|
|
|
|
#
|
2016-01-26 10:47:22 -07:00
|
|
|
# Copyright (c) Intel Corporation.
|
2015-09-21 08:52:41 -07: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 10:59:56 -07:00
|
|
|
S :=
|
|
|
|
|
2015-09-21 08:52:41 -07:00
|
|
|
SPDK_ROOT_DIR := $(CURDIR)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
|
2018-03-06 15:39:04 -07:00
|
|
|
DIRS-y += lib examples app include
|
|
|
|
DIRS-$(CONFIG_TESTS) += test
|
2015-09-21 08:52:41 -07:00
|
|
|
|
2018-02-12 08:53:33 -07:00
|
|
|
.PHONY: all clean $(DIRS-y) config.h CONFIG.local mk/cc.mk cc_version cxx_version
|
2015-09-21 08:52:41 -07:00
|
|
|
|
2017-05-08 15:07:13 -07:00
|
|
|
ifeq ($(CURDIR)/dpdk/build,$(CONFIG_DPDK_DIR))
|
2018-02-07 13:12:05 -07:00
|
|
|
ifneq ($(SKIP_DPDK_BUILD),1)
|
2017-05-08 15:07:13 -07:00
|
|
|
DPDKBUILD = dpdkbuild
|
|
|
|
DIRS-y += dpdkbuild
|
|
|
|
endif
|
2018-02-07 13:12:05 -07:00
|
|
|
endif
|
2017-05-08 15:07:13 -07:00
|
|
|
|
2015-09-21 08:52:41 -07:00
|
|
|
all: $(DIRS-y)
|
|
|
|
clean: $(DIRS-y)
|
2016-03-24 13:27:53 -07:00
|
|
|
$(Q)rm -f mk/cc.mk
|
2016-06-07 11:31:12 -07:00
|
|
|
$(Q)rm -f config.h
|
2015-09-21 08:52:41 -07:00
|
|
|
|
2017-11-15 10:36:36 -07:00
|
|
|
install: all
|
|
|
|
$(Q)echo "Installed to $(DESTDIR)$(CONFIG_PREFIX)"
|
|
|
|
|
2017-05-08 15:07:13 -07:00
|
|
|
lib: $(DPDKBUILD)
|
2016-05-10 16:17:51 -07:00
|
|
|
app: lib
|
2015-09-21 08:52:41 -07:00
|
|
|
test: lib
|
|
|
|
examples: lib
|
2017-08-22 00:37:37 +08:00
|
|
|
pkgdep:
|
|
|
|
sh ./scripts/pkgdep.sh
|
2015-09-21 08:52:41 -07:00
|
|
|
|
2016-03-24 13:27:53 -07:00
|
|
|
$(DIRS-y): mk/cc.mk config.h
|
|
|
|
|
|
|
|
mk/cc.mk:
|
|
|
|
$(Q)scripts/detect_cc.sh --cc=$(CC) --cxx=$(CXX) --lto=$(CONFIG_LTO) > $@.tmp; \
|
|
|
|
cmp -s $@.tmp $@ || mv $@.tmp $@ ; \
|
|
|
|
rm -f $@.tmp
|
2016-06-07 11:31:12 -07:00
|
|
|
|
2017-03-30 12:06:49 -07:00
|
|
|
config.h: CONFIG CONFIG.local scripts/genconfig.py
|
2018-01-28 00:29:16 +01:00
|
|
|
$(Q)PYCMD=$$(cat PYTHON_COMMAND 2>/dev/null) ; \
|
|
|
|
test -z "$$PYCMD" && PYCMD=python ; \
|
|
|
|
$$PYCMD scripts/genconfig.py $(MAKEFLAGS) > $@.tmp; \
|
2016-06-07 11:31:12 -07:00
|
|
|
cmp -s $@.tmp $@ || mv $@.tmp $@ ; \
|
|
|
|
rm -f $@.tmp
|
|
|
|
|
2018-02-12 08:53:33 -07: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
|
|
|
|
|
2015-09-21 08:52:41 -07:00
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|