99d300a1ec
systems were repo-copied from sys/miscfs to sys/fs. - Renamed the following file systems and their modules: fdesc -> fdescfs, portal -> portalfs, union -> unionfs. - Renamed corresponding kernel options: FDESC -> FDESCFS, PORTAL -> PORTALFS, UNION -> UNIONFS. - Install header files for the above file systems. - Removed bogus -I${.CURDIR}/../../sys CFLAGS from userland Makefiles.
23 lines
338 B
Makefile
23 lines
338 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/procfs
|
|
|
|
KMOD= procfs
|
|
SRCS= vnode_if.h \
|
|
procfs_ctl.c \
|
|
procfs_dbregs.c \
|
|
procfs_fpregs.c \
|
|
procfs_map.c \
|
|
procfs_mem.c \
|
|
procfs_note.c \
|
|
procfs_regs.c \
|
|
procfs_rlimit.c \
|
|
procfs_status.c \
|
|
procfs_subr.c \
|
|
procfs_type.c \
|
|
procfs_vfsops.c \
|
|
procfs_vnops.c
|
|
NOMAN=
|
|
|
|
.include <bsd.kmod.mk>
|