1# $FreeBSD$ 2 3MAINTAINER= n_hibma@freebsd.org 4S= ${.CURDIR}/../.. 5 6.PATH: $S/cam $S/cam/scsi 7 8KMOD= cam 9 10# See sys/conf/options for the flags that go into the different opt_*.h files. 11SRCS= opt_cam.h 12SRCS+= opt_scsi.h 13SRCS+= opt_cd.h 14SRCS+= opt_pt.h 15SRCS+= opt_sa.h 16SRCS+= opt_ses.h 17SRCS+= device_if.h bus_if.h vnode_if.h 18SRCS+= cam.c cam_periph.c cam_queue.c 19SRCS+= cam_sim.c cam_xpt.c 20SRCS+= scsi_all.c scsi_cd.c scsi_ch.c 21SRCS+= scsi_da.c 22SRCS+= scsi_pass.c 23SRCS+= scsi_pt.c 24SRCS+= scsi_sa.c 25SRCS+= scsi_ses.c 26SRCS+= scsi_targ_bh.c scsi_target.c 27 28EXPORT_SYMS= YES # XXX evaluate 29 30opt_scsi.h: 31 echo "#define SCSI_DELAY 15000" > ${.TARGET} 32 33.include <bsd.kmod.mk> 34