mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
9732e4fd92
(sys/dev/iscsi_initiator/ instead of sys/dev/iscsi/initiator/), to make room for the new one. This is also more logical location (kernel module being named iscsi_initiator.ko, for example). There is no ongoing work on this I know of, so it shouldn't make life harder for anyone. There are no functional changes, apart from "svn mv" and adjusting paths.
15 lines
314 B
Makefile
15 lines
314 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/iscsi_initiator
|
|
KMOD=iscsi_initiator
|
|
|
|
SRCS= iscsi.h iscsivar.h
|
|
SRCS+= iscsi.c isc_cam.c isc_soc.c isc_sm.c isc_subr.c iscsi_subr.c
|
|
SRCS+= opt_cam.h opt_iscsi_initiator.h
|
|
SRCS+= bus_if.h device_if.h
|
|
|
|
# Debugging
|
|
# CFLAGS+= -DISCSI_INITIATOR_DEBUG=9
|
|
|
|
.include <bsd.kmod.mk>
|