e73a712f80
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.
13 lines
219 B
Makefile
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>
|