2017-12-19 15:49:03 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2019-01-10 21:06:26 +00:00
|
|
|
# Copyright(c) 2017-2019 Intel Corporation
|
2017-10-25 20:37:23 +05:30
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
|
|
|
|
# library name
|
|
|
|
LIB = librte_security.a
|
|
|
|
|
|
|
|
# build flags
|
|
|
|
CFLAGS += -O3
|
|
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
LDLIBS += -lrte_eal -lrte_mempool
|
|
|
|
|
|
|
|
# library source files
|
|
|
|
SRCS-y += rte_security.c
|
|
|
|
|
|
|
|
# export include files
|
|
|
|
SYMLINK-y-include += rte_security.h
|
|
|
|
SYMLINK-y-include += rte_security_driver.h
|
|
|
|
|
|
|
|
# versioning export map
|
|
|
|
EXPORT_MAP := rte_security_version.map
|
|
|
|
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|