Makefile revision 1.21
1#	$NetBSD: Makefile,v 1.21 2007/10/26 17:35:01 pooka Exp $
2#
3
4.include <bsd.own.mk>
5
6USE_FORT?= yes	# data-driven bugs?
7
8WARNS=		4
9
10LIB=		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
17SRCS=		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
20MAN=		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		puffs_req.3 puffs_suspend.3
23INCS=		puffs.h puffsdump.h
24INCSDIR=	/usr/include
25LINTFLAGS+=-S -w
26
27.include <bsd.lib.mk>
28