common/mlx5: fix user mode register access command
[dpdk.git] / lib / librte_graph / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2020 Marvell International Ltd.
3 #
4
5 include $(RTE_SDK)/mk/rte.vars.mk
6
7 # library name
8 LIB = librte_graph.a
9
10 CFLAGS += -O3
11 CFLAGS += $(WERROR_FLAGS)
12 LDLIBS += -lrte_eal
13
14 EXPORT_MAP := rte_graph_version.map
15
16 # all source are stored in SRCS-y
17 SRCS-$(CONFIG_RTE_LIBRTE_GRAPH) += node.c
18 SRCS-$(CONFIG_RTE_LIBRTE_GRAPH) += graph.c
19 SRCS-$(CONFIG_RTE_LIBRTE_GRAPH) += graph_ops.c
20 SRCS-$(CONFIG_RTE_LIBRTE_GRAPH) += graph_debug.c
21 SRCS-$(CONFIG_RTE_LIBRTE_GRAPH) += graph_stats.c
22 SRCS-$(CONFIG_RTE_LIBRTE_GRAPH) += graph_populate.c
23
24 # install header files
25 SYMLINK-$(CONFIG_RTE_LIBRTE_GRAPH)-include += rte_graph.h
26 SYMLINK-$(CONFIG_RTE_LIBRTE_GRAPH)-include += rte_graph_worker.h
27
28 include $(RTE_SDK)/mk/rte.lib.mk