5566a3e358
Replace the BSD license header with the SPDX tag for files with only an Intel copyright on them. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
30 lines
433 B
Makefile
30 lines
433 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
#
|
|
# library name
|
|
#
|
|
LIB = librte_bus_vdev.a
|
|
|
|
CFLAGS += -O3
|
|
CFLAGS += $(WERROR_FLAGS)
|
|
|
|
# versioning export map
|
|
EXPORT_MAP := rte_bus_vdev_version.map
|
|
|
|
# library version
|
|
LIBABIVER := 1
|
|
|
|
SRCS-y += vdev.c
|
|
|
|
LDLIBS += -lrte_eal
|
|
|
|
#
|
|
# Export include files
|
|
#
|
|
SYMLINK-y-include += rte_bus_vdev.h
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|