]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/drivers/crypto/null/Makefile
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / dpdk / drivers / crypto / null / Makefile
CommitLineData
11fdf7f2
TL
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2016 Intel Corporation
3
4include $(RTE_SDK)/mk/rte.vars.mk
5
6
7# library name
8LIB = librte_pmd_null_crypto.a
9
10# build flags
11CFLAGS += -O3
12CFLAGS += $(WERROR_FLAGS)
13LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
14LDLIBS += -lrte_cryptodev
15LDLIBS += -lrte_bus_vdev
16
11fdf7f2
TL
17# versioning export map
18EXPORT_MAP := rte_pmd_null_crypto_version.map
19
20# library source files
21SRCS-$(CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO) += null_crypto_pmd.c
22SRCS-$(CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO) += null_crypto_pmd_ops.c
23
24# export include files
25SYMLINK-y-include +=
26
27include $(RTE_SDK)/mk/rte.lib.mk