examples/ethtool: fix link with ixgbe shared lib
[dpdk.git] / examples / ethtool / lib / Makefile
index d7ee955..266baba 100644 (file)
@@ -54,4 +54,10 @@ SRCS-y := rte_ethtool.c
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
 
+ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y)
+ifeq ($(CONFIG_RTE_LIBRTE_IXGBE_PMD),y)
+LDLIBS += -lrte_pmd_ixgbe
+endif
+endif
+
 include $(RTE_SDK)/mk/rte.extlib.mk