opnsense-src/sys/modules/pseudofs/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
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
2024-07-15 16:43:39 -06:00

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>