mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Compile cam_machdep.c if it exists, missed in r228022.
This commit is contained in:
parent
d3c10c5235
commit
1bd7c5de77
1 changed files with 6 additions and 3 deletions
|
|
@ -16,8 +16,11 @@ SRCS+= opt_pt.h
|
|||
SRCS+= opt_sa.h
|
||||
SRCS+= opt_ses.h
|
||||
SRCS+= device_if.h bus_if.h vnode_if.h
|
||||
SRCS+= cam.c cam_periph.c cam_queue.c
|
||||
SRCS+= cam_sim.c cam_xpt.c
|
||||
SRCS+= cam.c
|
||||
.if exists($S/${MACHINE}/${MACHINE}/cam_machdep.c)
|
||||
SRCS+= cam_machdep.c
|
||||
.endif
|
||||
SRCS+= cam_periph.c cam_queue.c cam_sim.c cam_xpt.c
|
||||
SRCS+= scsi_all.c scsi_cd.c scsi_ch.c
|
||||
SRCS+= scsi_da.c
|
||||
SRCS+= scsi_pass.c
|
||||
|
|
@ -32,7 +35,7 @@ SRCS+= ata_all.c
|
|||
SRCS+= ata_xpt.c
|
||||
SRCS+= ata_da.c
|
||||
.if exists($S/${MACHINE}/${MACHINE}/ata_machdep.c)
|
||||
SRCS+= ata_machdep.c
|
||||
SRCS+= ata_machdep.c
|
||||
.endif
|
||||
SRCS+= ata_pmp.c
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue