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