mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
29 lines
467 B
Makefile
29 lines
467 B
Makefile
.PATH: ${SRCTOP}/sys/fs/pseudofs
|
|
|
|
KMOD= pseudofs
|
|
SRCS= opt_pseudofs.h \
|
|
vnode_if.h \
|
|
pseudofs.c \
|
|
pseudofs_fileno.c \
|
|
pseudofs_vncache.c \
|
|
pseudofs_vnops.c
|
|
|
|
EXPORT_SYMS= pfs_cmount \
|
|
pfs_mount \
|
|
pfs_unmount \
|
|
pfs_root \
|
|
pfs_statfs \
|
|
pfs_init \
|
|
pfs_uninit \
|
|
pfs_create_dir \
|
|
pfs_create_file \
|
|
pfs_create_link \
|
|
pfs_destroy
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
.if defined(PSEUDOFS_TRACE)
|
|
CFLAGS+=-DPSEUDOFS_TRACE
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|