fix ethdev ports enumeration
[dpdk.git] / lib / librte_latencystats / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_latencystats.a
8
9 CFLAGS += -DALLOW_EXPERIMENTAL_API
10 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3
11 LDLIBS += -lm
12 LDLIBS += -lpthread
13 LDLIBS += -lrte_eal -lrte_metrics -lrte_ethdev -lrte_mbuf
14
15 EXPORT_MAP := rte_latencystats_version.map
16
17 LIBABIVER := 1
18
19 # all source are stored in SRCS-y
20 SRCS-$(CONFIG_RTE_LIBRTE_LATENCY_STATS) := rte_latencystats.c
21
22 # install this header file
23 SYMLINK-$(CONFIG_RTE_LIBRTE_LATENCY_STATS)-include := rte_latencystats.h
24
25 include $(RTE_SDK)/mk/rte.lib.mk