New upstream version 18.11-rc1
[deb_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 += -DALLOW_EXPERIMENTAL_API
12 CFLAGS += -O3
13 CFLAGS += $(WERROR_FLAGS)
14 LDLIBS += -lrte_net -lrte_eal -lrte_mempool -lrte_ring
15 LDLIBS += -lrte_mbuf -lrte_kvargs -lrte_cmdline
16
17 EXPORT_MAP := rte_ethdev_version.map
18
19 LIBABIVER := 11
20
21 SRCS-y += ethdev_private.c
22 SRCS-y += rte_ethdev.c
23 SRCS-y += rte_class_eth.c
24 SRCS-y += rte_flow.c
25 SRCS-y += rte_tm.c
26 SRCS-y += rte_mtr.c
27 SRCS-y += ethdev_profile.c
28
29 #
30 # Export include files
31 #
32 SYMLINK-y-include += rte_ethdev.h
33 SYMLINK-y-include += rte_ethdev_driver.h
34 SYMLINK-y-include += rte_ethdev_core.h
35 SYMLINK-y-include += rte_ethdev_pci.h
36 SYMLINK-y-include += rte_ethdev_vdev.h
37 SYMLINK-y-include += rte_eth_ctrl.h
38 SYMLINK-y-include += rte_dev_info.h
39 SYMLINK-y-include += rte_flow.h
40 SYMLINK-y-include += rte_flow_driver.h
41 SYMLINK-y-include += rte_tm.h
42 SYMLINK-y-include += rte_tm_driver.h
43 SYMLINK-y-include += rte_mtr.h
44 SYMLINK-y-include += rte_mtr_driver.h
45
46 include $(RTE_SDK)/mk/rte.lib.mk