2017-12-19 15:49:03 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
# library name
|
|
|
|
LIB = librte_mbuf.a
|
|
|
|
|
|
|
|
CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
|
2017-10-12 16:04:21 +00:00
|
|
|
LDLIBS += -lrte_eal -lrte_mempool
|
2012-09-04 12:54:00 +00:00
|
|
|
|
2015-02-02 17:40:20 +00:00
|
|
|
EXPORT_MAP := rte_mbuf_version.map
|
|
|
|
|
2018-04-03 13:39:13 +00:00
|
|
|
LIBABIVER := 4
|
2015-02-02 17:40:21 +00:00
|
|
|
|
2012-09-04 12:54:00 +00:00
|
|
|
# all source are stored in SRCS-y
|
2018-01-29 08:10:45 +00:00
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_MBUF) := rte_mbuf.c rte_mbuf_ptype.c rte_mbuf_pool_ops.c
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
# install includes
|
2018-01-29 08:10:45 +00:00
|
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_MBUF)-include := rte_mbuf.h rte_mbuf_ptype.h rte_mbuf_pool_ops.h
|
2012-09-04 12:54:00 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|