numam-dpdk/drivers/net/iavf/meson.build
Leyi Rong 02d212ca31 net/iavf: rename remaining avf strings
This is the main patch which renames the macros, functions,
structs and any remaining strings in the iavf code.

Signed-off-by: Leyi Rong <leyi.rong@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
2019-03-01 18:17:35 +01:00

21 lines
387 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
cflags += ['-Wno-strict-aliasing']
allow_experimental_apis = true
subdir('base')
objs = [base_objs]
sources = files(
'iavf_ethdev.c',
'iavf_rxtx.c',
'iavf_vchnl.c',
)
if arch_subdir == 'x86'
dpdk_conf.set('RTE_LIBRTE_IAVF_INC_VECTOR', 1)
sources += files('iavf_rxtx_vec_sse.c')
endif