X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Favf%2FMakefile;h=3f815bbc43dcef4fccf1ced0620a9ed85d56eff6;hb=cd8c7c7ce241;hp=2376cfd26b6f8d94a1578e7c15f858e886fcb93e;hpb=22b123a36d074eab72408d9698a27e1205225e16;p=dpdk.git diff --git a/drivers/net/avf/Makefile b/drivers/net/avf/Makefile index 2376cfd26b..3f815bbc43 100644 --- a/drivers/net/avf/Makefile +++ b/drivers/net/avf/Makefile @@ -13,6 +13,9 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs -lrte_hash LDLIBS += -lrte_bus_pci +# used to dump HW descriptor for debugging +# CFLAGS += -DDEBUG_DUMP_DESC + EXPORT_MAP := rte_pmd_avf_version.map LIBABIVER := 1 @@ -43,5 +46,9 @@ SRCS-$(CONFIG_RTE_LIBRTE_AVF_PMD) += avf_common.c SRCS-$(CONFIG_RTE_LIBRTE_AVF_PMD) += avf_ethdev.c SRCS-$(CONFIG_RTE_LIBRTE_AVF_PMD) += avf_vchnl.c +SRCS-$(CONFIG_RTE_LIBRTE_AVF_PMD) += avf_rxtx.c +ifeq ($(CONFIG_RTE_ARCH_X86), y) +SRCS-$(CONFIG_RTE_LIBRTE_AVF_INC_VECTOR) += avf_rxtx_vec_sse.c +endif include $(RTE_SDK)/mk/rte.lib.mk