xref: /haiku/src/add-ons/kernel/bus_managers/scsi/Jamfile (revision c49e0c68b013ebe90a3a48d5e98b5788ba2e6542)
1SubDir HAIKU_TOP src add-ons kernel bus_managers scsi ;
2
3UsePrivateHeaders kernel ;
4UsePrivateHeaders [ FDirName kernel arch $(TARGET_ARCH) ] ;
5UsePrivateHeaders [ FDirName kernel boot platform $(TARGET_BOOT_PLATFORM) ] ;
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 :
13	bus_raw.c
14	busses.c
15	ccb.c
16	device_scan.c
17	devices.c
18	dma_buffer.c
19	dpc.c
20	emulation.c
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