The linprocfs sources have moved to sys/compat/linprocfs.

This commit is contained in:
des 2000-12-12 22:00:05 +00:00
parent d21fbe84b8
commit fa5b3395bf

View File

@ -1,6 +1,6 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../i386/linux/linprocfs
.PATH: ${.CURDIR}/../../compat/linprocfs
KMOD= linprocfs
SRCS= vnode_if.h linprocfs_misc.c linprocfs_subr.c \
linprocfs_vfsops.c linprocfs_vnops.c
@ -8,4 +8,14 @@ NOMAN=
VFS_KLD=
CFLAGS+= -DLINPROCFS
test: unload install load
load:
kldload ${KMOD}
mount /compat/linux/proc
unload:
-umount /compat/linux/proc
kldunload ${KMOD}
.include <bsd.kmod.mk>