1# $NetBSD: Makefile,v 1.6 2020/11/06 15:35:33 christos Exp $ 2# 3 4RUMPTOP=${TOPRUMP} 5 6.PATH: ${RUMPTOP}/../dev/pci ${RUMPTOP}/../dev/usb 7 8LIB= rumpdev_pci_usbhc 9COMMENT=PCI USB host controller drivers 10 11IOCONF= PCI_USBHC.ioconf 12RUMP_COMPONENT=ioconf 13 14SRCS+= ohci_pci.c ohci.c 15SRCS+= uhci_pci.c uhci.c 16SRCS+= ehci_pci.c ehci.c 17SRCS+= xhci_pci.c xhci.c 18SRCS+= usb_pci.c 19 20CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/../dev 21 22.include "${RUMPTOP}/Makefile.rump" 23.include <bsd.lib.mk> 24.include <bsd.klinks.mk> 25