1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright 2018-2020 NXP 3 4if not is_linux 5 build = false 6 reason = 'only supported on Linux' 7endif 8deps += ['mempool_dpaa'] 9 10sources = files( 11 'dpaa_ethdev.c', 12 'fmlib/fm_lib.c', 13 'fmlib/fm_vsp.c', 14 'dpaa_flow.c', 15 'dpaa_rxtx.c', 16 'dpaa_fmc.c', 17 'dpaa_ptp.c', 18) 19 20if cc.has_argument('-Wno-pointer-arith') 21 cflags += '-Wno-pointer-arith' 22endif 23 24headers = files('rte_pmd_dpaa.h') 25