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