2017-12-19 15:49:03 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2010-2014 Intel Corporation
|
2012-09-04 13:54:00 +01:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
# library name
|
|
|
|
LIB = librte_ring.a
|
|
|
|
|
2020-04-13 16:55:30 +02:00
|
|
|
CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
|
2017-10-12 18:04:21 +02:00
|
|
|
LDLIBS += -lrte_eal
|
2012-09-04 13:54:00 +01:00
|
|
|
|
2015-02-02 12:40:20 -05:00
|
|
|
EXPORT_MAP := rte_ring_version.map
|
|
|
|
|
2012-09-04 13:54:00 +01:00
|
|
|
# all source are stored in SRCS-y
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_RING) := rte_ring.c
|
|
|
|
|
|
|
|
# install includes
|
2018-01-21 20:41:27 -08:00
|
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_RING)-include := rte_ring.h \
|
2020-04-20 13:28:23 +01:00
|
|
|
rte_ring_core.h \
|
2020-01-18 13:32:43 -06:00
|
|
|
rte_ring_elem.h \
|
2018-01-21 20:41:28 -08:00
|
|
|
rte_ring_generic.h \
|
2020-04-20 13:28:24 +01:00
|
|
|
rte_ring_c11_mem.h \
|
2020-04-20 13:28:26 +01:00
|
|
|
rte_ring_hts.h \
|
|
|
|
rte_ring_hts_c11_mem.h \
|
2020-04-20 13:28:28 +01:00
|
|
|
rte_ring_peek.h \
|
|
|
|
rte_ring_peek_c11_mem.h \
|
2020-04-20 13:28:24 +01:00
|
|
|
rte_ring_rts.h \
|
|
|
|
rte_ring_rts_c11_mem.h
|
2012-09-04 13:54:00 +01:00
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|