2018-06-08 21:20:36 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
|
2019-02-26 17:46:33 +00:00
|
|
|
dep = dependency('zlib', required: false)
|
2018-06-08 21:20:36 +00:00
|
|
|
build = dep.found()
|
2019-06-05 20:22:41 +00:00
|
|
|
reason = 'missing dependency, "zlib"'
|
2018-06-08 21:20:36 +00:00
|
|
|
ext_deps += dep
|
|
|
|
cflags += '-DZLIB_CONST'
|
|
|
|
sources = files('bnx2x.c',
|
|
|
|
'bnx2x_ethdev.c',
|
|
|
|
'bnx2x_rxtx.c',
|
|
|
|
'bnx2x_stats.c',
|
|
|
|
'bnx2x_vfpf.c',
|
|
|
|
'ecore_sp.c',
|
|
|
|
'elink.c')
|