The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/cam/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/11.2/sys/modules/cam/Makefile 331629 2018-03-27 17:35:15Z brooks $
    2 
    3 S=      ${SRCTOP}/sys
    4 
    5 .PATH: $S/cam $S/cam/scsi $S/cam/ata $S/${MACHINE}/${MACHINE}
    6 
    7 KMOD=   cam
    8 
    9 # See sys/conf/options for the flags that go into the different opt_*.h files.
   10 SRCS=   opt_cam.h
   11 SRCS+=  opt_compat.h
   12 SRCS+=  opt_ada.h
   13 SRCS+=  opt_scsi.h
   14 SRCS+=  opt_cd.h
   15 SRCS+=  opt_pt.h
   16 SRCS+=  opt_sa.h
   17 SRCS+=  opt_ses.h
   18 SRCS+=  opt_ddb.h
   19 SRCS+=  device_if.h bus_if.h vnode_if.h
   20 SRCS+=  cam.c
   21 SRCS+=  cam_compat.c
   22 .if exists($S/${MACHINE}/${MACHINE}/cam_machdep.c)
   23 SRCS+=  cam_machdep.c
   24 .endif
   25 SRCS+=  cam_iosched.c cam_periph.c cam_queue.c cam_sim.c cam_xpt.c
   26 SRCS+=  scsi_all.c scsi_cd.c scsi_ch.c
   27 SRCS+=  scsi_da.c
   28 SRCS+=  scsi_pass.c
   29 SRCS+=  scsi_pt.c
   30 SRCS+=  scsi_sa.c
   31 SRCS+=  scsi_enc.c
   32 SRCS+=  scsi_enc_ses.c
   33 SRCS+=  scsi_enc_safte.c
   34 SRCS+=  scsi_sg.c
   35 SRCS+=  scsi_targ_bh.c scsi_target.c
   36 SRCS+=  scsi_xpt.c
   37 SRCS+=  smp_all.c
   38 SRCS+=  ata_all.c
   39 SRCS+=  ata_xpt.c
   40 SRCS+=  ata_da.c
   41 .if exists($S/${MACHINE}/${MACHINE}/ata_machdep.c)
   42 SRCS+=  ata_machdep.c
   43 .endif
   44 SRCS+=  ata_pmp.c
   45 
   46 EXPORT_SYMS=    YES     # XXX evaluate
   47 
   48 .include <bsd.kmod.mk>

Cache object: 8dffd254f6b67b52923cfffa2d7da8b1


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.