931cc531aa
Besides the librawdev, removing experimental from skeleton_rawdev dummy driver as well. Signed-off-by: Shreyansh Jain <shreyansh.jain@nxp.com> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
28 lines
482 B
Makefile
28 lines
482 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright 2017 NXP
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
# library name
|
|
LIB = librte_rawdev.a
|
|
|
|
# library version
|
|
LIBABIVER := 1
|
|
|
|
# build flags
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
LDLIBS += -lrte_eal
|
|
|
|
# library source files
|
|
SRCS-y += rte_rawdev.c
|
|
|
|
# export include files
|
|
SYMLINK-y-include += rte_rawdev.h
|
|
SYMLINK-y-include += rte_rawdev_pmd.h
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_rawdev_version.map
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|