New upstream version 18.02
[deb_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
25 # install includes
26 SYMLINK-$(CONFIG_RTE_LIBRTE_PIPELINE)-include += rte_pipeline.h
27
28 include $(RTE_SDK)/mk/rte.lib.mk