net/txgbe: add MAC type and bus LAN id
[dpdk.git] / drivers / net / txgbe / base / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2015-2020
3
4 sources = [
5         'txgbe_hw.c',
6 ]
7
8 error_cflags = []
9
10 c_args = cflags
11 foreach flag: error_cflags
12         if cc.has_argument(flag)
13                 c_args += flag
14         endif
15 endforeach
16
17 base_lib = static_library('txgbe_base', sources,
18         dependencies: static_rte_eal,
19         c_args: c_args)
20 base_objs = base_lib.extract_all_objects()