96086db5a3
Added functions to allocate and free compression operations. Signed-off-by: Fiona Trahe <fiona.trahe@intel.com> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com> Signed-off-by: Shally Verma <shally.verma@caviumnetworks.com> Signed-off-by: Ashish Gupta <ashish.gupta@caviumnetworks.com>
32 lines
738 B
Makefile
32 lines
738 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017-2018 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_compressdev.a
|
|
|
|
# library version
|
|
LIBABIVER := 1
|
|
|
|
# build flags
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
LDLIBS += -lrte_eal -lrte_mempool -lrte_kvargs
|
|
|
|
# library source files
|
|
SRCS-y += rte_compressdev.c rte_compressdev_pmd.c rte_comp.c
|
|
|
|
# export include files
|
|
SYMLINK-y-include += rte_comp.h
|
|
SYMLINK-y-include += rte_compressdev.h
|
|
# export include files (for PMDs)
|
|
SYMLINK-y-include += rte_compressdev_pmd.h
|
|
SYMLINK-y-include += rte_compressdev_internal.h
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_compressdev_version.map
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|