f-stack/dpdk/lib/librte_mbuf/Makefile

23 lines
547 B
Makefile
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2010-2014 Intel Corporation
2017-04-21 10:43:26 +00:00
include $(RTE_SDK)/mk/rte.vars.mk
# library name
LIB = librte_mbuf.a
CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
LDLIBS += -lrte_eal -lrte_mempool
2017-04-21 10:43:26 +00:00
EXPORT_MAP := rte_mbuf_version.map
2019-06-25 11:12:58 +00:00
LIBABIVER := 4
2017-04-21 10:43:26 +00:00
# all source are stored in SRCS-y
2019-06-25 11:12:58 +00:00
SRCS-$(CONFIG_RTE_LIBRTE_MBUF) := rte_mbuf.c rte_mbuf_ptype.c rte_mbuf_pool_ops.c
2017-04-21 10:43:26 +00:00
# install includes
2019-06-25 11:12:58 +00:00
SYMLINK-$(CONFIG_RTE_LIBRTE_MBUF)-include := rte_mbuf.h rte_mbuf_ptype.h rte_mbuf_pool_ops.h
2017-04-21 10:43:26 +00:00
include $(RTE_SDK)/mk/rte.lib.mk