]> git.proxmox.com Git - ceph.git/blob - ceph/src/spdk/dpdk/lib/librte_flow_classify/Makefile
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / dpdk / lib / librte_flow_classify / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_flow_classify.a
8
9 CFLAGS += -O3
10 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR)
11
12 EXPORT_MAP := rte_flow_classify_version.map
13
14 LDLIBS += -lrte_eal -lrte_ethdev -lrte_net -lrte_table -lrte_acl
15
16 # all source are stored in SRCS-y
17 SRCS-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY) += rte_flow_classify.c
18 SRCS-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY) += rte_flow_classify_parse.c
19
20 # install this header file
21 SYMLINK-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY)-include := rte_flow_classify.h
22
23 include $(RTE_SDK)/mk/rte.lib.mk