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.c 14 busses.c 15 ccb.c 16 device_scan.c 17 devices.c 18 dma_buffer.cpp 19 dpc.c 20 emulation.cpp 21 queuing.c 22 scsi.c 23 scsi_io.c 24 scatter_gather.c 25 sim_interface.c 26 virtual_memory.c 27 ; 28 29