]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/drivers/crypto/openssl/Makefile
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / spdk / dpdk / drivers / crypto / openssl / 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# library name
7LIB = librte_pmd_openssl.a
8
9# build flags
10CFLAGS += -O3
11CFLAGS += $(WERROR_FLAGS)
11fdf7f2
TL
12
13# versioning export map
14EXPORT_MAP := rte_pmd_openssl_version.map
15
16# external library dependencies
17LDLIBS += -lcrypto
18LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
19LDLIBS += -lrte_cryptodev
20LDLIBS += -lrte_bus_vdev
21
22# library source files
23SRCS-$(CONFIG_RTE_LIBRTE_PMD_OPENSSL) += rte_openssl_pmd.c
24SRCS-$(CONFIG_RTE_LIBRTE_PMD_OPENSSL) += rte_openssl_pmd_ops.c
25
26include $(RTE_SDK)/mk/rte.lib.mk