NetBSD/usr.sbin/puffs/mount_9p/Makefile
pooka e73a712f80 mount_9p: mount a file server using the Plan9 file sharing protocol
Works, but lots of little things to nibble on:
* fix permissions to work better
* limit the amount of open files required
* do constant folding with psshfs code
* support authentication
etcetc.
2007-04-21 14:21:42 +00:00

13 lines
219 B
Makefile

# $NetBSD: Makefile,v 1.1 2007/04/21 14:21:42 pooka Exp $
#
PROG= mount_9p
SRCS= ninepuffs.c ninebuf.c nineproto.c fs.c node.c subr.c
LDADD+= -lpuffs -lutil
WARNS= 4
DBG=-g -O0
MAN= mount_9p.8
.include <bsd.prog.mk>