22 lines
483 B
Makefile
22 lines
483 B
Makefile
# $NetBSD: Makefile,v 1.5 2007/10/26 19:03:17 agc Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # network protocol library
|
|
|
|
LIB= iscsi
|
|
SRCS= conffile.c disk.c target.c iscsi.c util.c parameters.c storage.c netmask.c
|
|
CPPFLAGS+= -DCONFIG_ISCSI_DEBUG
|
|
CPPFLAGS+= -I${ISCSIDIST}/include
|
|
CPPFLAGS+= -pthread
|
|
LDFLAGS+= -pthread
|
|
NOMAN= # defined
|
|
WARNS=4
|
|
|
|
ISCSIDIST= ${NETBSDSRCDIR}/dist/iscsi
|
|
.PATH: ${ISCSIDIST}/src
|
|
|
|
LIBDPLIBS+= pthread ${.CURDIR}/../libpthread
|
|
|
|
.include <bsd.lib.mk>
|