2018-09-18 14:58:18 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
|
|
|
|
|
2020-12-22 00:45:11 +00:00
|
|
|
if is_windows
|
2021-04-20 10:22:25 +00:00
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
2020-12-22 00:45:11 +00:00
|
|
|
endif
|
|
|
|
|
2018-09-18 14:58:18 +00:00
|
|
|
subdir('base')
|
|
|
|
objs = [base_objs]
|
|
|
|
|
|
|
|
sources = files(
|
2021-04-20 10:22:25 +00:00
|
|
|
'qede_debug.c',
|
|
|
|
'qede_ethdev.c',
|
|
|
|
'qede_filter.c',
|
|
|
|
'qede_main.c',
|
|
|
|
'qede_regs.c',
|
|
|
|
'qede_rxtx.c',
|
|
|
|
'qede_sriov.c',
|
2018-09-18 14:58:18 +00:00
|
|
|
)
|
2020-07-08 22:50:53 +00:00
|
|
|
|
|
|
|
if cc.has_argument('-Wno-format-nonliteral')
|
2021-04-20 10:22:25 +00:00
|
|
|
cflags += '-Wno-format-nonliteral'
|
2020-07-08 22:50:53 +00:00
|
|
|
endif
|