xref: /haiku/src/add-ons/kernel/bus_managers/usb/Jamfile (revision 4bd0c1066b227cec4b79883bdef697c7a27f2e90)
1SubDir HAIKU_TOP src add-ons kernel bus_managers usb ;
2
3SetSubDirSupportedPlatformsBeOSCompatible ;
4
5SubDirC++Flags -fno-rtti ;
6
7local compatSources ;
8
9SubDirSysHdrs $(SUBDIR) ;
10UsePrivateKernelHeaders ;
11
12KernelStaticLibrary libusb.a :
13	Stack.cpp
14	Device.cpp
15	Hub.cpp
16	BusManager.cpp
17	Transfer.cpp
18	Pipe.cpp
19	Interface.cpp
20	Object.cpp
21	PhysicalMemoryAllocator.cpp
22	$(compatSources)
23;
24
25KernelAddon usb :
26	usb.cpp
27	: libusb.a
28	: usb.rdef
29	;
30
31SEARCH on [ FGristFiles $(compatSources) ]
32	= [ FDirName $(HAIKU_TOP) src system kernel util ] ;
33