net/ice/base: add some helper macros
[dpdk.git] / drivers / net / ice / base / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
3
4 sources = [
5         'ice_controlq.c',
6         'ice_common.c',
7         'ice_sched.c',
8         'ice_switch.c',
9         'ice_nvm.c',
10 ]
11
12 error_cflags = ['-Wno-unused-value',
13                 '-Wno-unused-but-set-variable',
14                 '-Wno-unused-variable',
15 ]
16 c_args = cflags
17
18 foreach flag: error_cflags
19         if cc.has_argument(flag)
20                 c_args += flag
21         endif
22 endforeach
23
24 base_lib = static_library('ice_base', sources,
25         dependencies: static_rte_eal,
26         c_args: c_args)
27 base_objs = base_lib.extract_all_objects()