git.droids-corp.org
/
dpdk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
43ad52cbc0621de33ce12fb6c50432f9a5b97e77
[dpdk.git]
/
drivers
/
net
/
e1000
/
meson.build
1
# SPDX-License-Identifier: BSD-3-Clause
2
# Copyright(c) 2017 Intel Corporation
3
4
if is_windows
5
build = false
6
reason = 'not supported on Windows'
7
subdir_done()
8
endif
9
10
subdir('base')
11
objs = [base_objs]
12
13
sources = files(
14
'e1000_logs.c',
15
'em_ethdev.c',
16
'em_rxtx.c',
17
'igb_ethdev.c',
18
'igb_flow.c',
19
'igb_pf.c',
20
'igb_rxtx.c'
21
)
22
23
includes += include_directories('base')