numam-dpdk/drivers/net/bnxt/meson.build
Ajit Khaparde 5c1171c972 net/bnxt: refactor filter/flow
In preparation of more rte_flow support it has been decided to
separate out filter and flow into their own files. Functionally the
same.

Signed-off-by: Michael Wildt <michael.wildt@broadcom.com>
Signed-off-by: Scott Branden <scott.branden@broadcom.com>
Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
2018-07-03 01:35:58 +02:00

21 lines
382 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
install_headers('rte_pmd_bnxt.h')
version = 2
sources = files('bnxt_cpr.c',
'bnxt_ethdev.c',
'bnxt_filter.c',
'bnxt_flow.c',
'bnxt_hwrm.c',
'bnxt_irq.c',
'bnxt_ring.c',
'bnxt_rxq.c',
'bnxt_rxr.c',
'bnxt_stats.c',
'bnxt_txq.c',
'bnxt_txr.c',
'bnxt_util.c',
'bnxt_vnic.c',
'rte_pmd_bnxt.c')