2017-12-19 15:49:01 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2015 Intel Corporation
|
2015-05-15 15:56:46 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
2018-04-04 14:30:24 +00:00
|
|
|
DIRS-y += common
|
2017-04-11 13:37:08 +00:00
|
|
|
DIRS-y += bus
|
2018-10-15 12:01:53 +00:00
|
|
|
DEPDIRS-bus := common
|
2017-03-31 05:35:36 +00:00
|
|
|
DIRS-y += mempool
|
2018-04-04 14:30:24 +00:00
|
|
|
DEPDIRS-mempool := common bus
|
2015-05-15 15:56:46 +00:00
|
|
|
DIRS-y += net
|
2018-04-04 14:30:24 +00:00
|
|
|
DEPDIRS-net := common bus mempool
|
2018-03-09 20:56:06 +00:00
|
|
|
DIRS-$(CONFIG_RTE_LIBRTE_BBDEV) += baseband
|
2018-04-04 14:30:24 +00:00
|
|
|
DEPDIRS-baseband := common bus mempool
|
2016-03-11 09:13:48 +00:00
|
|
|
DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += crypto
|
2018-04-04 14:30:24 +00:00
|
|
|
DEPDIRS-crypto := common bus mempool
|
2018-07-02 09:39:13 +00:00
|
|
|
DIRS-$(CONFIG_RTE_LIBRTE_PMD_QAT) += common/qat
|
|
|
|
DEPDIRS-common/qat := bus mempool
|
2018-05-09 16:14:26 +00:00
|
|
|
DIRS-$(CONFIG_RTE_LIBRTE_COMPRESSDEV) += compress
|
|
|
|
DEPDIRS-compress := bus mempool
|
2020-01-09 11:00:15 +00:00
|
|
|
DIRS-$(CONFIG_RTE_LIBRTE_VHOST) += vdpa
|
|
|
|
DEPDIRS-vdpa := common bus mempool
|
2017-10-16 13:42:46 +00:00
|
|
|
DIRS-$(CONFIG_RTE_LIBRTE_EVENTDEV) += event
|
2020-03-05 12:04:12 +00:00
|
|
|
DEPDIRS-event := common bus mempool net crypto
|
2018-01-31 09:13:15 +00:00
|
|
|
DIRS-$(CONFIG_RTE_LIBRTE_RAWDEV) += raw
|
2018-04-04 14:30:24 +00:00
|
|
|
DEPDIRS-raw := common bus mempool net event
|
2015-05-15 15:56:46 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.subdir.mk
|