3fd18735a4
Keeping them there seemed like a good idea at the time, but it annoys bde and confuses people who do not understand how MODULES_OVERRIDE works.
26 lines
385 B
Makefile
26 lines
385 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../fs/pseudofs
|
|
|
|
KMOD= pseudofs
|
|
SRCS= vnode_if.h \
|
|
pseudofs.c \
|
|
pseudofs_fileno.c \
|
|
pseudofs_vncache.c \
|
|
pseudofs_vnops.c
|
|
|
|
EXPORT_SYMS= pfs_mount \
|
|
pfs_unmount \
|
|
pfs_root \
|
|
pfs_statfs \
|
|
pfs_init \
|
|
pfs_uninit \
|
|
pfs_create_dir \
|
|
pfs_create_file \
|
|
pfs_create_link \
|
|
pfs_disable \
|
|
pfs_enable \
|
|
pfs_destroy
|
|
|
|
.include <bsd.kmod.mk>
|