blob: 8998264a3a9a0f5255399b55fe74209e2117b8d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Cavium, Inc
sources = [
'nicvf_hw.c',
'nicvf_mbox.c',
'nicvf_bsvf.c'
]
c_args = cflags
base_lib = static_library('nicvf_base', sources,
c_args: c_args,
dependencies: static_rte_ethdev
)
base_objs = base_lib.extract_all_objects()
|