2017-12-19 15:49:01 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2013-09-18 10:00:00 +00:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
#
|
|
|
|
# library name
|
|
|
|
#
|
|
|
|
LIB = librte_pmd_ring.a
|
|
|
|
|
|
|
|
CFLAGS += -O3
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
2017-10-12 16:04:21 +00:00
|
|
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
|
|
|
|
LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs
|
2017-11-07 06:54:21 +00:00
|
|
|
LDLIBS += -lrte_bus_vdev
|
2013-09-18 10:00:00 +00:00
|
|
|
|
2017-08-31 13:42:42 +00:00
|
|
|
EXPORT_MAP := rte_pmd_ring_version.map
|
2015-02-02 17:40:20 +00:00
|
|
|
|
2015-06-15 16:51:11 +00:00
|
|
|
LIBABIVER := 2
|
2015-02-02 17:40:21 +00:00
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
#
|
|
|
|
# all source are stored in SRCS-y
|
|
|
|
#
|
2013-11-08 02:00:00 +00:00
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_RING) += rte_eth_ring.c
|
2013-09-18 10:00:00 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Export include files
|
|
|
|
#
|
|
|
|
SYMLINK-y-include += rte_eth_ring.h
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|