New upstream version 18.02
[deb_dpdk.git] / drivers / bus / vdev / 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 #
7 # library name
8 #
9 LIB = librte_bus_vdev.a
10
11 CFLAGS += -O3
12 CFLAGS += $(WERROR_FLAGS)
13
14 # versioning export map
15 EXPORT_MAP := rte_bus_vdev_version.map
16
17 # library version
18 LIBABIVER := 1
19
20 SRCS-y += vdev.c
21
22 LDLIBS += -lrte_eal
23
24 #
25 # Export include files
26 #
27 SYMLINK-y-include += rte_bus_vdev.h
28
29 include $(RTE_SDK)/mk/rte.lib.mk