193d9e768b
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
33 lines
495 B
Makefile
33 lines
495 B
Makefile
# $FreeBSD$
|
|
|
|
.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_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
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
.if defined(PSEUDOFS_TRACE)
|
|
CFLAGS+=-DPSEUDOFS_TRACE
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|