diff options
Diffstat (limited to 'drivers/bbdev/Makefile')
-rw-r--r-- | drivers/bbdev/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/bbdev/Makefile b/drivers/bbdev/Makefile new file mode 100644 index 00000000..4ec83b0a --- /dev/null +++ b/drivers/bbdev/Makefile @@ -0,0 +1,14 @@ +# 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 |