mirror of https://github.com/F-Stack/f-stack.git
67 lines
1.4 KiB
Makefile
67 lines
1.4 KiB
Makefile
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
# Copyright(c) 2015-2018 Intel Corporation
|
||
|
|
||
|
include $(RTE_SDK)/mk/rte.vars.mk
|
||
|
|
||
|
# build directories
|
||
|
QAT_CRYPTO_DIR := $(RTE_SDK)/drivers/crypto/qat
|
||
|
QAT_COMPRESS_DIR := $(RTE_SDK)/drivers/compress/qat
|
||
|
VPATH=$(QAT_CRYPTO_DIR):$(QAT_COMPRESS_DIR)
|
||
|
|
||
|
# external library include paths
|
||
|
CFLAGS += -I$(SRCDIR)/qat_adf
|
||
|
CFLAGS += -I$(SRCDIR)
|
||
|
CFLAGS += -I$(QAT_CRYPTO_DIR)
|
||
|
CFLAGS += -I$(QAT_COMPRESS_DIR)
|
||
|
|
||
|
|
||
|
ifeq ($(CONFIG_RTE_LIBRTE_COMPRESSDEV),y)
|
||
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
||
|
LDLIBS += -lrte_compressdev
|
||
|
SRCS-y += qat_comp.c
|
||
|
SRCS-y += qat_comp_pmd.c
|
||
|
build_qat = yes
|
||
|
endif
|
||
|
|
||
|
# library symmetric crypto source files
|
||
|
ifeq ($(CONFIG_RTE_LIBRTE_CRYPTODEV),y)
|
||
|
ifeq ($(CONFIG_RTE_LIBRTE_PMD_QAT_SYM),y)
|
||
|
LDLIBS += -lrte_cryptodev
|
||
|
LDLIBS += -lcrypto
|
||
|
CFLAGS += -DBUILD_QAT_SYM
|
||
|
SRCS-y += qat_sym.c
|
||
|
SRCS-y += qat_sym_session.c
|
||
|
SRCS-y += qat_sym_pmd.c
|
||
|
build_qat = yes
|
||
|
endif
|
||
|
endif
|
||
|
|
||
|
ifdef build_qat
|
||
|
|
||
|
# library name
|
||
|
LIB = librte_pmd_qat.a
|
||
|
|
||
|
# library version
|
||
|
LIBABIVER := 1
|
||
|
# build flags
|
||
|
CFLAGS += $(WERROR_FLAGS)
|
||
|
CFLAGS += -O3
|
||
|
|
||
|
# library common source files
|
||
|
SRCS-y += qat_device.c
|
||
|
SRCS-y += qat_common.c
|
||
|
SRCS-y += qat_logs.c
|
||
|
SRCS-y += qat_qp.c
|
||
|
|
||
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool
|
||
|
LDLIBS += -lrte_pci -lrte_bus_pci
|
||
|
|
||
|
# export include files
|
||
|
SYMLINK-y-include +=
|
||
|
|
||
|
# versioning export map
|
||
|
EXPORT_MAP := ../../compress/qat/rte_pmd_qat_version.map
|
||
|
endif
|
||
|
|
||
|
include $(RTE_SDK)/mk/rte.lib.mk
|