]> git.proxmox.com Git - ceph.git/blame - ceph/src/seastar/dpdk/drivers/crypto/openssl/Makefile
import 15.2.0 Octopus source
[ceph.git] / ceph / src / seastar / dpdk / drivers / crypto / openssl / Makefile
CommitLineData
9f95a23c
TL
1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2016 Intel Corporation
7c673cae
FG
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
7c673cae
FG
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
9f95a23c
TL
22LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
23LDLIBS += -lrte_cryptodev
24LDLIBS += -lrte_bus_vdev
7c673cae
FG
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
7c673cae 30include $(RTE_SDK)/mk/rte.lib.mk