mbuf: extend meaning of QinQ stripped bit
[dpdk.git] / lib / librte_mbuf / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2014 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_mbuf.a
8
9 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
10
11 LDLIBS += -lrte_eal -lrte_mempool
12
13 EXPORT_MAP := rte_mbuf_version.map
14
15 # all source are stored in SRCS-y
16 SRCS-$(CONFIG_RTE_LIBRTE_MBUF) := rte_mbuf.c rte_mbuf_ptype.c rte_mbuf_pool_ops.c
17 SRCS-$(CONFIG_RTE_LIBRTE_MBUF) += rte_mbuf_dyn.c
18
19 # install includes
20 SYMLINK-$(CONFIG_RTE_LIBRTE_MBUF)-include := rte_mbuf.h
21 SYMLINK-$(CONFIG_RTE_LIBRTE_MBUF)-include += rte_mbuf_core.h
22 SYMLINK-$(CONFIG_RTE_LIBRTE_MBUF)-include += rte_mbuf_ptype.h
23 SYMLINK-$(CONFIG_RTE_LIBRTE_MBUF)-include += rte_mbuf_pool_ops.h
24 SYMLINK-$(CONFIG_RTE_LIBRTE_MBUF)-include += rte_mbuf_dyn.h
25
26 include $(RTE_SDK)/mk/rte.lib.mk