mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 11:56:58 +00:00
Move the vfio_selftests_*() helpers into their own file libvfio.c. These helpers have nothing to do with struct vfio_pci_device, so they don't make sense in vfio_pci_device.c. No functional change intended. Reviewed-by: Alex Mastro <amastro@fb.com> Tested-by: Alex Mastro <amastro@fb.com> Reviewed-by: Raghavendra Rao Ananta <rananta@google.com> Signed-off-by: David Matlack <dmatlack@google.com> Link: https://lore.kernel.org/r/20251126231733.3302983-16-dmatlack@google.com Signed-off-by: Alex Williamson <alex@shazbot.org>
30 lines
728 B
Makefile
30 lines
728 B
Makefile
include $(top_srcdir)/scripts/subarch.include
|
|
ARCH ?= $(SUBARCH)
|
|
|
|
LIBVFIO_SRCDIR := $(selfdir)/vfio/lib
|
|
|
|
LIBVFIO_C := iommu.c
|
|
LIBVFIO_C += iova_allocator.c
|
|
LIBVFIO_C += libvfio.c
|
|
LIBVFIO_C += vfio_pci_device.c
|
|
LIBVFIO_C += vfio_pci_driver.c
|
|
|
|
ifeq ($(ARCH:x86_64=x86),x86)
|
|
LIBVFIO_C += drivers/ioat/ioat.c
|
|
LIBVFIO_C += drivers/dsa/dsa.c
|
|
endif
|
|
|
|
LIBVFIO_OUTPUT := $(OUTPUT)/libvfio
|
|
|
|
LIBVFIO_O := $(patsubst %.c, $(LIBVFIO_OUTPUT)/%.o, $(LIBVFIO_C))
|
|
|
|
LIBVFIO_O_DIRS := $(shell dirname $(LIBVFIO_O) | uniq)
|
|
$(shell mkdir -p $(LIBVFIO_O_DIRS))
|
|
|
|
CFLAGS += -I$(LIBVFIO_SRCDIR)/include
|
|
|
|
$(LIBVFIO_O): $(LIBVFIO_OUTPUT)/%.o : $(LIBVFIO_SRCDIR)/%.c
|
|
$(CC) $(CFLAGS) $(CPPFLAGS) $(TARGET_ARCH) -c $< -o $@
|
|
|
|
EXTRA_CLEAN += $(LIBVFIO_OUTPUT)
|