mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-07 14:16:53 -04:00
27 lines
623 B
Makefile
27 lines
623 B
Makefile
# $NetBSD: Makefile,v 1.4 2012/01/01 01:19:20 wrstuden Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # network protocol library
|
|
|
|
LIB= iscsi
|
|
SRCS= conffile.c disk.c util.c parameters.c protocol.c storage.c
|
|
SRCS+= netmask.c md5c.c md5hl.c uuid.c
|
|
SRCS+= initiator.c target.c
|
|
CPPFLAGS+= -DCONFIG_ISCSI_DEBUG -DHAVE_CONFIG_H
|
|
CPPFLAGS+= -I${ISCSIDIST}/include
|
|
CPPFLAGS+= -pthread
|
|
LDFLAGS+= -pthread
|
|
MAN= libiscsi.3
|
|
WARNS=4
|
|
|
|
INCS+= iscsi.h
|
|
INCSDIR=/usr/include
|
|
|
|
ISCSIDIST= ${.CURDIR}/../dist
|
|
.PATH: ${ISCSIDIST}/src/lib ${ISCSIDIST}/include
|
|
|
|
LIBDPLIBS+= pthread ${.CURDIR}/../../../../lib/libpthread
|
|
|
|
.include <bsd.lib.mk>
|