6124ad4b86
The fpga_lte_fec is the only bbdev driver that does not use bbdev in the name, so modify it to keep consistency with the other bbdev drivers. This will then allow later simplification due to all drivers using the same basic naming format. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
17 lines
537 B
Makefile
17 lines
537 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)
|
|
DIRS-$(CONFIG_RTE_LIBRTE_PMD_BBDEV_FPGA_LTE_FEC) += fpga_lte_fec
|
|
DEPDIRS-fpga_lte_fec = $(core-libs)
|
|
|
|
include $(RTE_SDK)/mk/rte.subdir.mk
|