38d3d35bfe9099e476c09db3db61682c54d80ce3
[dpdk.git] / lib / librte_ethdev / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2010-2017 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 #
7 # library name
8 #
9 LIB = librte_ethdev.a
10
11 CFLAGS += -O3
12 CFLAGS += $(WERROR_FLAGS)
13 LDLIBS += -lrte_net -lrte_eal -lrte_mempool -lrte_ring
14 LDLIBS += -lrte_mbuf -lrte_kvargs -lrte_meter
15
16 EXPORT_MAP := rte_ethdev_version.map
17
18 SRCS-y += ethdev_private.c
19 SRCS-y += rte_ethdev.c
20 SRCS-y += rte_class_eth.c
21 SRCS-y += rte_flow.c
22 SRCS-y += rte_tm.c
23 SRCS-y += rte_mtr.c
24 SRCS-y += ethdev_profile.c
25 SRCS-y += ethdev_trace_points.c
26
27 ifeq ($(CONFIG_RTE_LIBRTE_TELEMETRY),y)
28 LDLIBS += -lrte_telemetry
29 endif
30
31 #
32 # Export include files
33 #
34 SYMLINK-y-include += rte_ethdev.h
35 SYMLINK-y-include += rte_ethdev_driver.h
36 SYMLINK-y-include += rte_ethdev_core.h
37 SYMLINK-y-include += rte_ethdev_pci.h
38 SYMLINK-y-include += rte_ethdev_trace.h
39 SYMLINK-y-include += rte_ethdev_trace_fp.h
40 SYMLINK-y-include += rte_ethdev_vdev.h
41 SYMLINK-y-include += rte_eth_ctrl.h
42 SYMLINK-y-include += rte_dev_info.h
43 SYMLINK-y-include += rte_flow.h
44 SYMLINK-y-include += rte_flow_driver.h
45 SYMLINK-y-include += rte_tm.h
46 SYMLINK-y-include += rte_tm_driver.h
47 SYMLINK-y-include += rte_mtr.h
48 SYMLINK-y-include += rte_mtr_driver.h
49
50 include $(RTE_SDK)/mk/rte.lib.mk