blob: 1764cd92f031277a4ab71ff87bf15f1a2a141640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.8 2023/06/03 09:09:10 lukem Exp $
.include <bsd.own.mk>
USE_SHLIBDIR= yes
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+= ${CC_WNO_STRINGOP_TRUNCATION}
.include <bsd.lib.mk>
|