blob: 3e1a228a3ffcb5ba9bd07d562aa88b576e4fab22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2019 NXP
if host_machine.system() != 'linux'
build = false
endif
deps += ['common_dpaax']
sources = files('pfe_ethdev.c',
'pfe_hal.c',
'pfe_hif_lib.c',
'pfe_hif.c')
if cc.has_argument('-Wno-pointer-arith')
cflags += '-Wno-pointer-arith'
endif
includes += include_directories('base')
|