1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2016 Intel Corporation
4 include $(RTE_SDK)/mk/rte.vars.mk
7 LIB = librte_pmd_kasumi.a
11 CFLAGS += $(WERROR_FLAGS)
13 # versioning export map
14 EXPORT_MAP := rte_pmd_kasumi_version.map
16 # external library dependencies
18 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
19 LDLIBS += -lrte_cryptodev
20 LDLIBS += -lrte_bus_vdev
23 IMB_HDR = $(shell echo '$Hinclude <intel-ipsec-mb.h>' | \
24 $(CC) -E $(EXTRA_CFLAGS) - | grep 'intel-ipsec-mb.h' | \
25 head -n1 | cut -d'"' -f2)
27 # Detect library version
28 IMB_VERSION = $(shell grep -e "IMB_VERSION_STR" $(IMB_HDR) | cut -d'"' -f2)
29 IMB_VERSION_NUM = $(shell grep -e "IMB_VERSION_NUM" $(IMB_HDR) | cut -d' ' -f3)
31 ifeq ($(IMB_VERSION),)
32 $(error "IPSec_MB version >= 0.53 is required")
35 ifeq ($(shell expr $(IMB_VERSION_NUM) \< 0x3400), 1)
36 $(error "IPSec_MB version >= 0.53 is required")
38 # library source files
39 SRCS-$(CONFIG_RTE_LIBRTE_PMD_KASUMI) += rte_kasumi_pmd.c
40 SRCS-$(CONFIG_RTE_LIBRTE_PMD_KASUMI) += rte_kasumi_pmd_ops.c
42 include $(RTE_SDK)/mk/rte.lib.mk