diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2000-03-25 13:23:02 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2000-03-25 13:23:02 +0000 |
| commit | 8deca17b798e2aa57085f7879a89a03a20bb95aa (patch) | |
| tree | b03aa0f05fd58afb32b208cb90282b15d651c1d2 /sys/modules | |
| parent | 3f8f00575d75fc068afa85575e9322df4136ff96 (diff) | |
Notes
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 4 | ||||
| -rw-r--r-- | sys/modules/linprocfs/Makefile | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 50510515ed069..63e96818f178b 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -3,8 +3,8 @@ # XXX present but broken: ip_mroute_mod pcic SUBDIR= aha amr an aue ccd cd9660 coda cue dc fdesc fxp if_disc if_ef if_ppp \ - if_sl if_tun ipfilter ipfw joy kernfs kue md mfs mii mlx msdos \ - ncp netgraph nfs ntfs nullfs \ + if_sl if_tun ipfilter ipfw joy kernfs kue linprocfs \ + md mfs mii mlx msdos ncp netgraph nfs ntfs nullfs \ nwfs portal procfs rl sf sis sk ste ti tl \ ugen uhid ukbd ulpt umapfs umass umodem ums union urio usb \ vn vpo vr wb xl diff --git a/sys/modules/linprocfs/Makefile b/sys/modules/linprocfs/Makefile new file mode 100644 index 0000000000000..60434cd4c48a3 --- /dev/null +++ b/sys/modules/linprocfs/Makefile @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../miscfs/linprocfs +KMOD= linprocfs +SRCS= vnode_if.h linprocfs_misc.c linprocfs_subr.c \ + linprocfs_vfsops.c linprocfs_vnops.c +NOMAN= +VFS_KLD= +CFLAGS+= -DLINPROCFS + +.include <bsd.kmod.mk> |
