mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
33 lines
615 B
Makefile
33 lines
615 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/cam/ctl
|
|
|
|
KMOD= ctl
|
|
|
|
SRCS= ctl.c
|
|
SRCS+= ctl_backend.c
|
|
SRCS+= ctl_backend_block.c
|
|
SRCS+= ctl_backend_ramdisk.c
|
|
SRCS+= ctl_cmd_table.c
|
|
SRCS+= ctl_frontend.c
|
|
SRCS+= ctl_frontend_cam_sim.c
|
|
SRCS+= ctl_frontend_ioctl.c
|
|
SRCS+= ctl_frontend_iscsi.c
|
|
SRCS+= ctl_ha.c
|
|
SRCS+= ctl_scsi_all.c
|
|
SRCS+= ctl_tpc.c
|
|
SRCS+= ctl_tpc_local.c
|
|
SRCS+= ctl_error.c
|
|
SRCS+= ctl_util.c
|
|
SRCS+= scsi_ctl.c
|
|
SRCS+= bus_if.h
|
|
SRCS+= device_if.h
|
|
SRCS+= vnode_if.h
|
|
SRCS+= icl_conn_if.h
|
|
SRCS+= opt_cam.h
|
|
|
|
#CFLAGS+=-DICL_KERNEL_PROXY
|
|
|
|
MFILES= kern/bus_if.m kern/device_if.m dev/iscsi/icl_conn_if.m
|
|
|
|
.include <bsd.kmod.mk>
|