New upstream version 18.02
[deb_dpdk.git] / drivers / crypto / null / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2016 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6
7 # library name
8 LIB = librte_pmd_null_crypto.a
9
10 # build flags
11 CFLAGS += -O3
12 CFLAGS += $(WERROR_FLAGS)
13 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
14 LDLIBS += -lrte_cryptodev
15 LDLIBS += -lrte_bus_vdev
16
17 # library version
18 LIBABIVER := 1
19
20 # versioning export map
21 EXPORT_MAP := rte_pmd_null_crypto_version.map
22
23 # library source files
24 SRCS-$(CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO) += null_crypto_pmd.c
25 SRCS-$(CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO) += null_crypto_pmd_ops.c
26
27 # export include files
28 SYMLINK-y-include +=
29
30 include $(RTE_SDK)/mk/rte.lib.mk