net/ice: clean input set macro definition
[dpdk.git] / drivers / net / bnx2x / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
3
4 if is_windows
5         build = false
6         reason = 'not supported on Windows'
7         subdir_done()
8 endif
9
10 dep = dependency('zlib', required: false, method: 'pkg-config')
11 build = dep.found()
12 reason = 'missing dependency, "zlib"'
13 ext_deps += dep
14 cflags += '-DZLIB_CONST'
15 sources = files('bnx2x.c',
16         'bnx2x_ethdev.c',
17         'bnx2x_rxtx.c',
18         'bnx2x_stats.c',
19         'bnx2x_vfpf.c',
20         'ecore_sp.c',
21         'elink.c')