New upstream version 18.11-rc1
[deb_dpdk.git] / lib / librte_cryptodev / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2015 Intel Corporation
3
4 include $(RTE_SDK)/mk/rte.vars.mk
5
6 # library name
7 LIB = librte_cryptodev.a
8
9 # library version
10 LIBABIVER := 5
11
12 # build flags
13 CFLAGS += -O3
14 CFLAGS += $(WERROR_FLAGS)
15 LDLIBS += -lrte_eal -lrte_mempool -lrte_ring -lrte_mbuf
16 LDLIBS += -lrte_kvargs
17
18 # library source files
19 SRCS-y += rte_cryptodev.c rte_cryptodev_pmd.c
20
21 # export include files
22 SYMLINK-y-include += rte_crypto.h
23 SYMLINK-y-include += rte_crypto_sym.h
24 SYMLINK-y-include += rte_cryptodev.h
25 SYMLINK-y-include += rte_cryptodev_pmd.h
26 SYMLINK-y-include += rte_crypto_asym.h
27
28 # versioning export map
29 EXPORT_MAP := rte_cryptodev_version.map
30
31 include $(RTE_SDK)/mk/rte.lib.mk