mirror of https://github.com/F-Stack/f-stack.git
27 lines
462 B
Meson
27 lines
462 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2015-2020
|
|
|
|
sources = [
|
|
'txgbe_dcb_hw.c',
|
|
'txgbe_dcb.c',
|
|
'txgbe_eeprom.c',
|
|
'txgbe_hw.c',
|
|
'txgbe_mbx.c',
|
|
'txgbe_mng.c',
|
|
'txgbe_phy.c',
|
|
]
|
|
|
|
error_cflags = []
|
|
|
|
c_args = cflags
|
|
foreach flag: error_cflags
|
|
if cc.has_argument(flag)
|
|
c_args += flag
|
|
endif
|
|
endforeach
|
|
|
|
base_lib = static_library('txgbe_base', sources,
|
|
dependencies: static_rte_eal,
|
|
c_args: c_args)
|
|
base_objs = base_lib.extract_all_objects()
|