build: remove individual library versions
[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 # versioning export map
18 EXPORT_MAP := rte_pmd_null_crypto_version.map
19
20 # library source files
21 SRCS-$(CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO) += null_crypto_pmd.c
22 SRCS-$(CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO) += null_crypto_pmd_ops.c
23
24 # export include files
25 SYMLINK-y-include +=
26
27 include $(RTE_SDK)/mk/rte.lib.mk