blob: d28ef637d4560909c4d6fba0dc1a2721b49a768c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.6 2019/10/13 07:28:10 mrg Exp $
.include <bsd.own.mk>
LIB= isns
SRCS= isns.c isns_pdu.c isns_socketio.c isns_task.c isns_thread.c
SRCS+= isns_util.c isns_fileio.c
MAN= isns.3
INCS= isns.h isns_defs.h
INCSDIR=/usr/include
WARNS?= 5
LIBDPLIBS+= pthread ${.CURDIR}/../libpthread
COPTS.isns.c+= ${GCC_NO_STRINGOP_TRUNCATION}
.include <bsd.lib.mk>
|