2019-06-06 11:38:50 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright 2018-2019 Cisco Systems, Inc. All rights reserved.
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
#
|
|
|
|
# library name
|
|
|
|
#
|
|
|
|
LIB = librte_pmd_memif.a
|
|
|
|
|
|
|
|
EXPORT_MAP := rte_pmd_memif_version.map
|
|
|
|
|
|
|
|
CFLAGS += -O3
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool
|
2019-07-05 17:16:16 +00:00
|
|
|
LDLIBS += -lrte_ethdev -lrte_kvargs -lrte_net
|
2019-06-06 11:38:50 +00:00
|
|
|
LDLIBS += -lrte_hash
|
|
|
|
LDLIBS += -lrte_bus_vdev
|
|
|
|
|
|
|
|
#
|
|
|
|
# all source are stored in SRCS-y
|
|
|
|
#
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_MEMIF) += rte_eth_memif.c
|
|
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_MEMIF) += memif_socket.c
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|