mbuf: extend meaning of QinQ stripped bit
[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 ifeq ($(findstring y,$(CONFIG_RTE_LIBRTE_MLX5_PMD)$(CONFIG_RTE_LIBRTE_MLX5_VDPA_PMD)$(CONFIG_RTE_LIBRTE_MLX5_REGEX_PMD)),y)
12 DIRS-y += common/mlx5
13 DEPDIRS-common/mlx5 := bus
14 endif
15 DIRS-y += net
16 DEPDIRS-net := common bus mempool common/mlx5
17 DIRS-$(CONFIG_RTE_LIBRTE_BBDEV) += baseband
18 DEPDIRS-baseband := common bus mempool
19 DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += crypto
20 DEPDIRS-crypto := common bus mempool
21 DIRS-$(CONFIG_RTE_LIBRTE_PMD_QAT) += common/qat
22 DEPDIRS-common/qat := bus mempool
23 DIRS-$(CONFIG_RTE_LIBRTE_COMPRESSDEV) += compress
24 DEPDIRS-compress := bus mempool
25 DIRS-$(CONFIG_RTE_LIBRTE_REGEXDEV) += regex
26 DEPDIRS-regex := common bus common/mlx5
27 DIRS-$(CONFIG_RTE_LIBRTE_VHOST) += vdpa
28 DEPDIRS-vdpa := common bus mempool common/mlx5
29 DIRS-$(CONFIG_RTE_LIBRTE_EVENTDEV) += event
30 DEPDIRS-event := common bus mempool net crypto
31 DIRS-$(CONFIG_RTE_LIBRTE_RAWDEV) += raw
32 DEPDIRS-raw := common bus mempool net event
33
34 include $(RTE_SDK)/mk/rte.subdir.mk