Deleted Added
sdiff udiff text old ( 64621 ) new ( 70711 )
full compact
1# $FreeBSD: head/sys/modules/cam/Makefile 64621 2000-08-13 18:49:40Z n_hibma $
2
3MAINTAINER = n_hibma@freebsd.org
4S = ${.CURDIR}/../..
5
6.PATH: $S/cam $S/cam/scsi
7KMOD = cam
8
9# See sys/conf/options for the flags that go into the different opt_*.h files.
10SRCS = opt_cam.h
11SRCS += opt_scsi.h
12SRCS += opt_cd.h
13SRCS += opt_hw_wdog.h
14SRCS += opt_pt.h
15SRCS += opt_sa.h
16SRCS += opt_ses.h
17SRCS += device_if.h bus_if.h
18SRCS += cam.c cam_extend.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
28NOMAN =
29
30opt_scsi.h:
31 echo '#define SCSI_DELAY 15000' > opt_scsi.h
32
33.include <bsd.kmod.mk>