c5e4612e72
The dependency on libuuid is useless because the required code is embedded in EAL, see commit 6bc67c497a51 ("eal: add uuid API"). Fixes: 831dba47bd36 ("bus/vmbus: add Hyper-V virtual bus support") Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
include $(RTE_SDK)/mk/rte.vars.mk
|
|
|
|
LIB = librte_bus_vmbus.a
|
|
LIBABIVER := 1
|
|
EXPORT_MAP := rte_bus_vmbus_version.map
|
|
|
|
CFLAGS += -I$(SRCDIR)
|
|
CFLAGS += -O3 $(WERROR_FLAGS)
|
|
CFLAGS += -DALLOW_EXPERIMENTAL_API
|
|
|
|
ifneq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),)
|
|
SYSTEM := linux
|
|
endif
|
|
ifneq ($(CONFIG_RTE_EXEC_ENV_BSDAPP),)
|
|
$(error "VMBUS not implemented for BSD yet")
|
|
endif
|
|
|
|
CFLAGS += -I$(RTE_SDK)/drivers/bus/vmbus/$(SYSTEM)
|
|
CFLAGS += -I$(RTE_SDK)/lib/librte_eal/common
|
|
CFLAGS += -I$(RTE_SDK)/lib/librte_eal/$(SYSTEM)app/eal
|
|
|
|
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
|
|
LDLIBS += -lrte_ethdev
|
|
|
|
include $(RTE_SDK)/drivers/bus/vmbus/$(SYSTEM)/Makefile
|
|
SRCS-$(CONFIG_RTE_LIBRTE_VMBUS) := $(addprefix $(SYSTEM)/,$(SRCS))
|
|
SRCS-$(CONFIG_RTE_LIBRTE_VMBUS) += vmbus_common.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_VMBUS) += vmbus_channel.c vmbus_bufring.c
|
|
SRCS-$(CONFIG_RTE_LIBRTE_VMBUS) += vmbus_common_uio.c
|
|
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_VMBUS)-include += rte_bus_vmbus.h
|
|
SYMLINK-$(CONFIG_RTE_LIBRTE_VMBUS)-include += rte_vmbus_reg.h
|
|
|
|
include $(RTE_SDK)/mk/rte.lib.mk
|