mirror of https://github.com/F-Stack/f-stack.git
24 lines
442 B
Meson
24 lines
442 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
install_headers('rte_pmd_bnxt.h')
|
|
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')
|
|
|
|
if arch_subdir == 'x86'
|
|
sources += files('bnxt_rxtx_vec_sse.c')
|
|
endif
|