e8c43c75f536b08cbf679d6212ca6ae39bb514ec
[dpdk.git] / lib / librte_pipeline / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2016 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 #
7 # library name
8 #
9 LIB = librte_pipeline.a
10
11 CFLAGS += -O3
12 CFLAGS += $(WERROR_FLAGS)
13 LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf -lrte_table
14 LDLIBS += -lrte_port
15
16 EXPORT_MAP := rte_pipeline_version.map
17
18 LIBABIVER := 3
19
20 #
21 # all source are stored in SRCS-y
22 #
23 SRCS-$(CONFIG_RTE_LIBRTE_PIPELINE) := rte_pipeline.c
24 SRCS-$(CONFIG_RTE_LIBRTE_PIPELINE) += rte_table_action.c
25
26 # install includes
27 SYMLINK-$(CONFIG_RTE_LIBRTE_PIPELINE)-include += rte_pipeline.h rte_table_action.h
28
29 include $(RTE_SDK)/mk/rte.lib.mk