regex/mlx5: introduce driver for BlueField 2
[dpdk.git] / drivers / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2015 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 DIRS-y += common
7 DIRS-y += bus
8 DEPDIRS-bus := common
9 DIRS-y += mempool
10 DEPDIRS-mempool := common bus
11 DIRS-y += net
12 DEPDIRS-net := common bus mempool
13 DIRS-$(CONFIG_RTE_LIBRTE_BBDEV) += baseband
14 DEPDIRS-baseband := common bus mempool
15 DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += crypto
16 DEPDIRS-crypto := common bus mempool
17 DIRS-$(CONFIG_RTE_LIBRTE_PMD_QAT) += common/qat
18 DEPDIRS-common/qat := bus mempool
19 DIRS-$(CONFIG_RTE_LIBRTE_COMPRESSDEV) += compress
20 DEPDIRS-compress := bus mempool
21 DIRS-$(CONFIG_RTE_LIBRTE_REGEXDEV) += regex
22 DEPDIRS-regex := common bus
23 DIRS-$(CONFIG_RTE_LIBRTE_VHOST) += vdpa
24 DEPDIRS-vdpa := common bus mempool
25 DIRS-$(CONFIG_RTE_LIBRTE_EVENTDEV) += event
26 DEPDIRS-event := common bus mempool net crypto
27 DIRS-$(CONFIG_RTE_LIBRTE_RAWDEV) += raw
28 DEPDIRS-raw := common bus mempool net event
29
30 include $(RTE_SDK)/mk/rte.subdir.mk