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