61113f40fd
Get rid of the original puffs_req(3) framework and use puffs_framebuf(3) instead for file system requests. It has the advantage of being suitable for transporting a distributed message passing protocol and therefore us being able to run the file system server on any host. Ok, puffs is not quite here yet: libpuffs needs to grow request routing support and the message contents need to be munged into a host independent format. Saying which format would be telling, but it might begin with an X, end in an L and have the 13th character in the middle. Keep an eye out for the sequels: Parts 3+m/n.
28 lines
723 B
Makefile
28 lines
723 B
Makefile
# $NetBSD: Makefile,v 1.22 2007/12/04 21:24:10 pooka Exp $
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
USE_FORT?= yes # data-driven bugs?
|
|
|
|
WARNS= 4
|
|
|
|
LIB= puffs
|
|
|
|
# don't enable this unless you know what you're doing (or if you don't
|
|
# know what you're doing, it's still ok to enable this if you're me)
|
|
#LIBDPLIBS+= pthread ${.CURDIR}/../libpthread
|
|
#CPPFLAGS+= -DPUFFS_WITH_THREADS
|
|
|
|
SRCS= puffs.c callcontext.c creds.c dispatcher.c flush.c \
|
|
framebuf.c null.c opdump.c paths.c pnode.c requests.c \
|
|
subr.c suspend.c
|
|
MAN= puffs.3 puffs_cc.3 puffs_cred.3 puffs_flush.3 \
|
|
puffs_framebuf.3 puffs_node.3 puffs_ops.3 puffs_path.3 \
|
|
puffs_suspend.3
|
|
INCS= puffs.h puffsdump.h
|
|
INCSDIR= /usr/include
|
|
LINTFLAGS+=-S -w
|
|
|
|
.include <bsd.lib.mk>
|