1 2# SPDX-License-Identifier: BSD-3-Clause 3# Copyright(c) 2019-2020 Intel Corporation 4 5if not is_linux or not dpdk_conf.has('RTE_ARCH_X86_64') 6 build = false 7 reason = 'only supported on x86_64 Linux' 8 subdir_done() 9endif 10 11sources = files('dlb2.c', 12 'dlb2_iface.c', 13 'dlb2_xstats.c', 14 'pf/dlb2_main.c', 15 'pf/dlb2_pf.c', 16 'pf/base/dlb2_resource.c', 17 'rte_pmd_dlb2.c', 18 'dlb2_selftest.c' 19) 20 21headers = files('rte_pmd_dlb2.h') 22 23deps += ['mbuf', 'mempool', 'ring', 'pci', 'bus_pci'] 24