blob: 9c0e89c2c31c5c46f52e27f18b37fe687b8b71fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(C) 2019 Marvell International Ltd.
if not is_linux
build = false
reason = 'only supported on Linux'
endif
deps += ['bus_pci']
sources = files(
'nitrox_device.c',
'nitrox_hal.c',
'nitrox_logs.c',
'nitrox_sym.c',
'nitrox_sym_capabilities.c',
'nitrox_sym_reqmgr.c',
'nitrox_qp.c'
)
|