2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-10-17 12:43:57 +00:00
|
|
|
|
2019-11-20 17:23:36 +00:00
|
|
|
sources = files('rte_distributor.c', 'rte_distributor_single.c')
|
2017-10-17 12:43:57 +00:00
|
|
|
if arch_subdir == 'x86'
|
|
|
|
sources += files('rte_distributor_match_sse.c')
|
|
|
|
else
|
|
|
|
sources += files('rte_distributor_match_generic.c')
|
|
|
|
endif
|
|
|
|
headers = files('rte_distributor.h')
|
2018-01-22 15:42:54 +00:00
|
|
|
deps += ['mbuf']
|