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