mirror of https://github.com/F-Stack/f-stack.git
19 lines
285 B
Meson
19 lines
285 B
Meson
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
# Copyright(c) 2015-2020
|
||
|
|
||
|
subdir('base')
|
||
|
objs = [base_objs]
|
||
|
|
||
|
sources = files(
|
||
|
'txgbe_ethdev.c',
|
||
|
'txgbe_ptypes.c',
|
||
|
'txgbe_pf.c',
|
||
|
'txgbe_rxtx.c',
|
||
|
)
|
||
|
|
||
|
deps += ['hash']
|
||
|
|
||
|
includes += include_directories('base')
|
||
|
|
||
|
install_headers('rte_pmd_txgbe.h')
|