Deleted Added
full compact
Makefile (106497) Makefile (107178)
1# $FreeBSD: head/sys/modules/cam/Makefile 106497 2002-11-06 13:47:00Z nyan $
1# $FreeBSD: head/sys/modules/cam/Makefile 107178 2002-11-22 22:55:51Z njl $
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_hw_wdog.h
15SRCS+= opt_pt.h
16SRCS+= opt_sa.h
17SRCS+= opt_ses.h
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_hw_wdog.h
15SRCS+= opt_pt.h
16SRCS+= opt_sa.h
17SRCS+= opt_ses.h
18SRCS+= device_if.h bus_if.h
18SRCS+= device_if.h bus_if.h vnode_if.h
19SRCS+= cam.c cam_periph.c cam_queue.c
20SRCS+= cam_sim.c cam_xpt.c
21SRCS+= scsi_all.c scsi_cd.c scsi_ch.c
22SRCS+= scsi_da.c
23SRCS+= scsi_pass.c
24SRCS+= scsi_pt.c
25SRCS+= scsi_sa.c
26SRCS+= scsi_ses.c
27SRCS+= scsi_targ_bh.c scsi_target.c
28
29EXPORT_SYMS= YES # XXX evaluate
30
31opt_scsi.h:
32 echo '#define SCSI_DELAY 15000' > opt_scsi.h
33
34.include <bsd.kmod.mk>
19SRCS+= cam.c cam_periph.c cam_queue.c
20SRCS+= cam_sim.c cam_xpt.c
21SRCS+= scsi_all.c scsi_cd.c scsi_ch.c
22SRCS+= scsi_da.c
23SRCS+= scsi_pass.c
24SRCS+= scsi_pt.c
25SRCS+= scsi_sa.c
26SRCS+= scsi_ses.c
27SRCS+= scsi_targ_bh.c scsi_target.c
28
29EXPORT_SYMS= YES # XXX evaluate
30
31opt_scsi.h:
32 echo '#define SCSI_DELAY 15000' > opt_scsi.h
33
34.include <bsd.kmod.mk>