1SubDir HAIKU_TOP src add-ons kernel generic scsi_periph ;
2
3UsePrivateHeaders drivers ;
4UsePrivateKernelHeaders ;
5SubDirHdrs $(HAIKU_TOP) src system kernel device_manager ;
6
7# disable debug output, if debugging is disabled
8if $(DEBUG) = 0 {
9	SubDirCcFlags [ FDefines DEBUG_MAX_LEVEL_FLOW=0 DEBUG_MAX_LEVEL_INFO=0  ] ;
10}
11
12KernelAddon scsi_periph :
13	block.cpp
14	device.cpp
15	error_handling.cpp
16	handle.cpp
17	io.cpp
18	removable.cpp
19	scsi_periph.cpp
20	sync.cpp
21	;
22