1 # $NetBSD: Makefile,v 1.23 2009/12/05 12:13:08 pooka Exp $ 2 # 3 4 .include <bsd.own.mk> 5 6 USE_FORT?= yes # data-driven bugs? 7 8 WARNS= 4 9 10 LIB= puffs 11 12 # don't enable this unless you know what you're doing (or if you don't 13 # know what you're doing, it's still ok to enable this if you're me) 14 #LIBDPLIBS+= pthread ${.CURDIR}/../libpthread 15 #CPPFLAGS+= -DPUFFS_WITH_THREADS 16 17 SRCS= puffs.c callcontext.c creds.c dispatcher.c flush.c \ 18 framebuf.c null.c opdump.c paths.c pnode.c requests.c \ 19 subr.c suspend.c 20 MAN= puffs.3 puffs_cc.3 puffs_cred.3 puffs_flush.3 \ 21 puffs_framebuf.3 puffs_node.3 puffs_ops.3 puffs_path.3 22 INCS= puffs.h puffsdump.h 23 INCSDIR= /usr/include 24 LINTFLAGS+=-S -w 25 26 .include <bsd.lib.mk> 27