2019-06-25 11:12:58 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
|
2022-09-06 04:00:10 +00:00
|
|
|
if is_windows
|
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2019-06-25 11:12:58 +00:00
|
|
|
subdir('base')
|
|
|
|
objs = [base_objs]
|
|
|
|
|
|
|
|
sources = files(
|
2022-09-06 04:00:10 +00:00
|
|
|
'fm10k_ethdev.c',
|
|
|
|
'fm10k_rxtx.c',
|
2019-06-25 11:12:58 +00:00
|
|
|
)
|
|
|
|
if arch_subdir == 'x86'
|
2022-09-06 04:00:10 +00:00
|
|
|
sources += files('fm10k_rxtx_vec.c')
|
2019-06-25 11:12:58 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
includes += include_directories('base')
|