- wireless baseband device (bbdev) library files - bbdev is tagged as EXPERIMENTAL - Makefiles and configuration macros definition - bbdev library is enabled by default - release notes of the initial version Signed-off-by: Amr Mokhtar <amr.mokhtar@intel.com> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
29 lines
555 B
Makefile
29 lines
555 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_bbdev.a
|
|
|
|
# library version
|
|
LIBABIVER := 1
|
|
|
|
# build flags
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
LDLIBS += -lrte_eal -lrte_mempool -lrte_mbuf
|
|
|
|
# library source files
|
|
SRCS-y += rte_bbdev.c
|
|
|
|
# export include files
|
|
SYMLINK-y-include += rte_bbdev_op.h
|
|
SYMLINK-y-include += rte_bbdev.h
|
|
SYMLINK-y-include += rte_bbdev_pmd.h
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_bbdev_version.map
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|