summaryrefslogtreecommitdiffstats
path: root/sys/modules/linprocfs/Makefile
blob: c114953202b4fb3b871c0f3a3cd9508ffc9bb843 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# $FreeBSD$

.PATH: ${.CURDIR}/../../compat/linprocfs

KMOD=	linprocfs
SRCS=	vnode_if.h linprocfs_misc.c linprocfs_subr.c \
	linprocfs_vfsops.c linprocfs_vnops.c
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>
OpenPOWER on IntegriCloud