1ef7e18191
The drivers directory contains some sub-directories for each kind of device (or bus, mem): net, crypto, event, raw They are not suffixed with "dev" because it is obvious. For consistency, the sub-directory drivers/bbdev/ is renamed to drivers/baseband/. Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Acked-by: Amr Mokhtar <amr.mokhtar@intel.com>
26 lines
583 B
Makefile
26 lines
583 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
# library name
|
|
LIB = librte_pmd_bbdev_null.a
|
|
|
|
# build flags
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring -lrte_kvargs
|
|
LDLIBS += -lrte_bbdev
|
|
LDLIBS += -lrte_bus_vdev
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_pmd_bbdev_null_version.map
|
|
|
|
# library version
|
|
LIBABIVER := 1
|
|
|
|
# library source files
|
|
SRCS-$(CONFIG_RTE_LIBRTE_PMD_BBDEV_NULL) += bbdev_null.c
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|