a5aeb2b9e2
Below ops are added too: mac_addr_add mac_addr_remove mac_addr_set set_mc_addr_list mtu_set promiscuous_enable promiscuous_disable allmulticast_enable allmulticast_disable rx_queue_setup rx_queue_release rx_queue_count rx_descriptor_done rx_descriptor_status tx_descriptor_status tx_queue_setup tx_queue_release tx_done_cleanup rxq_info_get txq_info_get dev_supported_ptypes_get Signed-off-by: Alvin Zhang <alvinx.zhang@intel.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
39 lines
980 B
Makefile
39 lines
980 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2019-2020 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
LIB = librte_pmd_igc.a
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
LDLIBS += -lrte_eal
|
|
LDLIBS += -lrte_ethdev
|
|
LDLIBS += -lrte_bus_pci
|
|
LDLIBS += -lrte_mbuf
|
|
LDLIBS += -lrte_mempool
|
|
|
|
EXPORT_MAP := rte_pmd_igc_version.map
|
|
|
|
VPATH += $(SRCDIR)/base
|
|
|
|
#
|
|
# all source are stored in SRCS-y
|
|
#
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_api.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_base.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_i225.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_mac.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_manage.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_nvm.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_osdep.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_phy.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_logs.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_ethdev.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_IGC_PMD) += igc_txrx.c
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|