blob: a06a2c89c934b5c8a218aa30cde16c8b2a337f8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Cavium, Inc
sources = [
'octeontx_pkovf.c',
'octeontx_pkivf.c',
'octeontx_bgx.c'
]
depends = ['ethdev', 'mempool_octeontx']
static_objs = []
foreach d: depends
static_objs += [get_variable('static_rte_' + d)]
endforeach
c_args = cflags
if allow_experimental_apis
c_args += '-DALLOW_EXPERIMENTAL_API'
endif
base_lib = static_library('octeontx_base', sources,
c_args: c_args,
dependencies: static_objs,
)
base_objs = base_lib.extract_all_objects()
|