common/mlx5: fix user mode register access command
[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 # versioning export map
18 EXPORT_MAP := rte_rawdev_ioat_version.map
19
20 # library source files
21 SRCS-$(CONFIG_RTE_LIBRTE_PMD_IOAT_RAWDEV) += ioat_rawdev.c
22 SRCS-$(CONFIG_RTE_LIBRTE_PMD_IOAT_RAWDEV) += ioat_rawdev_test.c
23
24 # export include files
25 SYMLINK-y-include += rte_ioat_rawdev.h
26 SYMLINK-y-include += rte_ioat_spec.h
27
28 include $(RTE_SDK)/mk/rte.lib.mk