]> git.proxmox.com Git - ceph.git/blame - ceph/src/spdk/dpdk/drivers/crypto/openssl/Makefile
import 15.2.0 Octopus source
[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)
9f95a23c 12CFLAGS += -DALLOW_EXPERIMENTAL_API
11fdf7f2
TL
13
14# library version
15LIBABIVER := 1
16
17# versioning export map
18EXPORT_MAP := rte_pmd_openssl_version.map
19
20# external library dependencies
21LDLIBS += -lcrypto
22LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
23LDLIBS += -lrte_cryptodev
24LDLIBS += -lrte_bus_vdev
25
26# library source files
27SRCS-$(CONFIG_RTE_LIBRTE_PMD_OPENSSL) += rte_openssl_pmd.c
28SRCS-$(CONFIG_RTE_LIBRTE_PMD_OPENSSL) += rte_openssl_pmd_ops.c
29
30include $(RTE_SDK)/mk/rte.lib.mk