c5933b2086
included man pages on how to use it. This code is still somewhat experimental but has been successfully tested on a number of targets. Many thanks to Danny for contributing this. Approved by: re
14 lines
270 B
Makefile
14 lines
270 B
Makefile
# $FreeBSD$
|
|
|
|
SRCS= iscontrol.c pdu.c fsm.c config.c login.c auth_subr.c misc.c
|
|
PROG= iscontrol
|
|
DPADD= ${LIBCAM} ${LIBMD}
|
|
LDADD= -lcam -lmd
|
|
|
|
CFLAGS += -I${.CURDIR}/../../sys/dev/iscsi/initiator
|
|
#CFLAGS += -g -DDEBUG
|
|
|
|
MAN= iscsi.conf.5 iscontrol.8
|
|
|
|
.include <bsd.prog.mk>
|