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('dpaa_ethdev.c', 11 'fmlib/fm_lib.c', 12 'fmlib/fm_vsp.c', 13 'dpaa_flow.c', 14 'dpaa_rxtx.c', 15 'dpaa_fmc.c') 16 17if cc.has_argument('-Wno-pointer-arith') 18 cflags += '-Wno-pointer-arith' 19endif 20 21headers = files('rte_pmd_dpaa.h') 22