Edit

IABSD.fr/src/usr.sbin/iscsid/Makefile

Branch :

  • Show log

    Commit

  • Author : claudio
    Date : 2021-04-16 14:37:06
    Hash : ea99aae6
    Message : Implement a control message to get the state of iscsid. This is used by iscsictl to poll for completion after reload commands. With this slow session establishment should not cause mount errors during startup. Initial version from Dr Ashton Fagg ashton (at) fagg id au OK dlg@ deraadt@

  • usr.sbin/iscsid/Makefile
  • #	$OpenBSD: Makefile,v 1.6 2021/04/16 14:37:06 claudio Exp $
    
    PROG=	iscsid
    SRCS=	connection.c control.c initiator.c iscsid.c log.c logmsg.c pdu.c \
    	poll.c session.c task.c util.c vscsi.c
    
    MAN=	iscsid.8
    
    CFLAGS+= -Wall
    CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
    CFLAGS+= -Wmissing-declarations
    CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
    CFLAGS+= -Wsign-compare
    LDADD+= -levent
    DPADD+= ${LIBEVENT}
    
    .include <bsd.prog.mk>