b8cfe2c9ae
- bbdev 'turbo_sw' is the software accelerated version of 3GPP L1 Turbo coding operation using the optimized Intel FlexRAN SDK libraries. - 'turbo_sw' pmd is disabled by default Signed-off-by: Amr Mokhtar <amr.mokhtar@intel.com> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
15 lines
436 B
Makefile
15 lines
436 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
core-libs := librte_eal librte_mbuf librte_mempool librte_ring
|
|
core-libs += librte_bbdev librte_kvargs librte_cfgfile
|
|
|
|
DIRS-$(CONFIG_RTE_LIBRTE_PMD_BBDEV_NULL) += null
|
|
DEPDIRS-null = $(core-libs)
|
|
DIRS-$(CONFIG_RTE_LIBRTE_PMD_BBDEV_TURBO_SW) += turbo_sw
|
|
DEPDIRS-turbo_sw = $(core-libs)
|
|
|
|
include $(RTE_SDK)/mk/rte.subdir.mk
|