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