2019-06-25 11:12:58 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
|
|
|
|
|
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
|
|
|
'qede_debug.c',
|
|
|
|
'qede_ethdev.c',
|
|
|
|
'qede_filter.c',
|
|
|
|
'qede_main.c',
|
|
|
|
'qede_regs.c',
|
|
|
|
'qede_rxtx.c',
|
|
|
|
'qede_sriov.c',
|
2019-06-25 11:12:58 +00:00
|
|
|
)
|
2021-02-05 08:48:47 +00:00
|
|
|
|
|
|
|
if cc.has_argument('-Wno-format-nonliteral')
|
2022-09-06 04:00:10 +00:00
|
|
|
cflags += '-Wno-format-nonliteral'
|
2021-02-05 08:48:47 +00:00
|
|
|
endif
|