23 lines
521 B
Makefile
23 lines
521 B
Makefile
# $NetBSD: Makefile,v 1.6 2007/12/09 09:23:58 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
|
|
SRCS+= netmask.c md5c.c md5hl.c
|
|
CPPFLAGS+= -DCONFIG_ISCSI_DEBUG -DHAVE_CONFIG_H
|
|
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>
|