2019-06-25 11:12:58 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Cavium, Inc
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
# library name
|
|
|
|
LIB = librte_pmd_octeontx_crypto.a
|
|
|
|
|
|
|
|
# build flags
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
|
|
|
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
|
|
|
|
LDLIBS += -lrte_cryptodev
|
|
|
|
LDLIBS += -lrte_pci -lrte_bus_pci
|
|
|
|
LDLIBS += -lrte_common_cpt
|
|
|
|
|
|
|
|
VPATH += $(RTE_SDK)/drivers/crypto/octeontx
|
|
|
|
|
2020-06-18 16:55:50 +00:00
|
|
|
CFLAGS += -O3
|
2019-06-25 11:12:58 +00:00
|
|
|
CFLAGS += -I$(RTE_SDK)/drivers/common/cpt
|
2020-06-18 16:55:50 +00:00
|
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
2019-06-25 11:12:58 +00:00
|
|
|
|
|
|
|
# PMD code
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO) += otx_cryptodev.c
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO) += otx_cryptodev_capabilities.c
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO) += otx_cryptodev_hw_access.c
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO) += otx_cryptodev_mbox.c
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_OCTEONTX_CRYPTO) += otx_cryptodev_ops.c
|
|
|
|
|
|
|
|
# export include files
|
|
|
|
SYMLINK-y-include +=
|
|
|
|
|
|
|
|
# versioning export map
|
|
|
|
EXPORT_MAP := rte_pmd_octeontx_crypto_version.map
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|