]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/test/test-pipeline/Makefile
update download target update for octopus release
[ceph.git] / ceph / src / spdk / dpdk / test / test-pipeline / Makefile
CommitLineData
11fdf7f2
TL
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2010-2015 Intel Corporation
3
4include $(RTE_SDK)/mk/rte.vars.mk
5
6ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
7
8#
9# library name
10#
11APP = testpipeline
12
13CFLAGS += -O3
14CFLAGS += $(WERROR_FLAGS)
15
16#
17# all source are stored in SRCS-y
18#
19SRCS-y := main.c
20SRCS-y += config.c
21SRCS-y += init.c
22SRCS-y += runtime.c
23SRCS-y += pipeline_stub.c
24SRCS-y += pipeline_hash.c
25SRCS-y += pipeline_lpm.c
26SRCS-y += pipeline_lpm_ipv6.c
27
28# include ACL lib if available
29SRCS-$(CONFIG_RTE_LIBRTE_ACL) += pipeline_acl.c
30
31include $(RTE_SDK)/mk/rte.app.mk
32
33endif