]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/examples/performance-thread/Makefile
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / spdk / dpdk / examples / performance-thread / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2015 Intel Corporation
3
4 ifeq ($(RTE_SDK),)
5 $(error "Please define RTE_SDK environment variable")
6 endif
7
8 # Default target, can be overridden by command line or environment
9 RTE_TARGET ?= x86_64-native-linuxapp-gcc
10
11 include $(RTE_SDK)/mk/rte.vars.mk
12
13 ifeq ($(filter y,$(CONFIG_RTE_ARCH_X86_64) $(CONFIG_RTE_ARCH_ARM64)),)
14 $(error This application is only supported for x86_64 and arm64 targets)
15 endif
16
17 DIRS-y += l3fwd-thread
18 DIRS-y += pthread_shim
19
20
21 include $(RTE_SDK)/mk/rte.extsubdir.mk