blob: dba7e3b2aa0190db9f5837e9b088b51a4c5d0bec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Intel Corporation
sources = files('rte_distributor.c', 'rte_distributor_v20.c')
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')
deps += ['mbuf']
|