drivers/raw: standardize naming
[dpdk.git] / drivers / raw / ioat / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2019 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_rawdev_ioat.a
8
9 # build flags
10 CFLAGS += -O3
11 CFLAGS += $(WERROR_FLAGS)
12
13 LDLIBS += -lrte_eal -lrte_rawdev
14 LDLIBS += -lrte_pci -lrte_bus_pci
15 LDLIBS += -lrte_mbuf -lrte_mempool
16
17 # library version
18 LIBABIVER := 1
19
20 # versioning export map
21 EXPORT_MAP := rte_rawdev_ioat_version.map
22
23 # library source files
24 SRCS-$(CONFIG_RTE_LIBRTE_PMD_IOAT_RAWDEV) += ioat_rawdev.c
25 SRCS-$(CONFIG_RTE_LIBRTE_PMD_IOAT_RAWDEV) += ioat_rawdev_test.c
26
27 # export include files
28 SYMLINK-y-include += rte_ioat_rawdev.h
29 SYMLINK-y-include += rte_ioat_spec.h
30
31 include $(RTE_SDK)/mk/rte.lib.mk