1SubDir HAIKU_TOP src add-ons kernel busses usb ;
2
3SubDirC++Flags -fno-rtti ;
4
5UsePrivateKernelHeaders ;
6UseHeaders [ FDirName $(HAIKU_TOP) src add-ons kernel bus_managers usb ] ;
7
8KernelAddon <usb>uhci :
9	uhci.cpp
10	uhci_rh.cpp
11	: libusb.a
12	: uhci.rdef
13	;
14
15KernelAddon <usb>ohci :
16	ohci.cpp
17	ohci_rh.cpp
18	: libusb.a
19	: ohci.rdef
20	;
21
22KernelAddon <usb>ehci :
23	ehci.cpp
24	ehci_rh.cpp
25	: libusb.a
26	: ehci.rdef
27	;
28
29KernelAddon <usb>xhci :
30	xhci.cpp
31	xhci_rh.cpp
32	: libusb.a
33	: xhci.rdef
34	;
35
36