2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-08-30 12:31:35 +01:00
|
|
|
|
2020-12-21 16:45:11 -08:00
|
|
|
if is_windows
|
2021-04-20 11:22:25 +01:00
|
|
|
build = false
|
|
|
|
reason = 'not supported on Windows'
|
|
|
|
subdir_done()
|
2020-12-21 16:45:11 -08:00
|
|
|
endif
|
|
|
|
|
2017-08-30 12:31:35 +01:00
|
|
|
subdir('base')
|
|
|
|
objs = [base_objs]
|
|
|
|
|
|
|
|
sources = files(
|
2021-04-20 11:22:25 +01:00
|
|
|
'e1000_logs.c',
|
|
|
|
'em_ethdev.c',
|
|
|
|
'em_rxtx.c',
|
|
|
|
'igb_ethdev.c',
|
|
|
|
'igb_flow.c',
|
|
|
|
'igb_pf.c',
|
|
|
|
'igb_rxtx.c',
|
2017-08-30 12:31:35 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
includes += include_directories('base')
|