freebsd-dev/lib/libiscsiutil/Makefile
John Baldwin 6378393308 Add an internal libiscsiutil library.
Move some of the code duplicated between ctld(8) and iscsid(8) into a
libiscsiutil library.

Sharing the low-level PDU code did require having a
'struct connection' base class with a method table to permit separate
initiator vs target behavior (e.g. in handling proxy PDUs).

Reviewed by:	mav, emaste
Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D33544
2021-12-22 10:43:11 -08:00

11 lines
180 B
Makefile

LIB= iscsiutil
INTERNALLIB=
PACKAGE= iscsi
INCS= libiscsiutil.h
SRCS= chap.c connection.c keys.c log.c pdu.c utils.c
CFLAGS+= -I${SRCTOP}/sys/dev/iscsi
.include <bsd.lib.mk>