1SubDir HAIKU_TOP src add-ons kernel bus_managers scsi ;
2
3UsePrivateHeaders drivers ;
4UsePrivateKernelHeaders ;
5
6# disable debug output, if debugging is disabled
7if $(DEBUG) = 0 {
8	SubDirCcFlags [ FDefines DEBUG_MAX_LEVEL_FLOW=0 DEBUG_MAX_LEVEL_INFO=0  ] ;
9	SubDirC++Flags [ FDefines DEBUG_MAX_LEVEL_FLOW=0 DEBUG_MAX_LEVEL_INFO=0  ] ;
10}
11
12KernelAddon scsi :
13	bus_raw.cpp
14	busses.cpp
15	ccb.cpp
16	device_scan.cpp
17	devices.cpp
18	dma_buffer.cpp
19	dpc.cpp
20	emulation.cpp
21	queuing.cpp
22	scsi.cpp
23	scsi_io.cpp
24	scatter_gather.cpp
25	sim_interface.cpp
26	virtual_memory.cpp
27	;
28
29