2020-10-19 08:53:18 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2015-2020
|
|
|
|
|
2020-12-22 00:45:11 +00:00
|
|
|
if is_windows
|
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2020-10-19 08:53:19 +00:00
|
|
|
subdir('base')
|
|
|
|
objs = [base_objs]
|
|
|
|
|
2020-10-19 08:53:18 +00:00
|
|
|
sources = files(
|
|
|
|
'txgbe_ethdev.c',
|
2021-02-25 08:08:45 +00:00
|
|
|
'txgbe_ethdev_vf.c',
|
2020-12-18 09:36:43 +00:00
|
|
|
'txgbe_fdir.c',
|
2020-12-18 09:36:30 +00:00
|
|
|
'txgbe_flow.c',
|
2020-12-18 09:36:58 +00:00
|
|
|
'txgbe_ipsec.c',
|
2020-10-19 08:53:40 +00:00
|
|
|
'txgbe_ptypes.c',
|
2020-10-19 08:53:55 +00:00
|
|
|
'txgbe_pf.c',
|
2020-10-19 08:53:29 +00:00
|
|
|
'txgbe_rxtx.c',
|
2020-12-18 09:36:52 +00:00
|
|
|
'txgbe_tm.c',
|
2020-10-19 08:53:18 +00:00
|
|
|
)
|
|
|
|
|
2020-12-18 09:36:58 +00:00
|
|
|
deps += ['hash', 'security']
|
2020-10-19 08:53:59 +00:00
|
|
|
|
2020-10-19 08:53:19 +00:00
|
|
|
includes += include_directories('base')
|
2020-10-19 08:53:56 +00:00
|
|
|
|
|
|
|
install_headers('rte_pmd_txgbe.h')
|