Add a build directory and Makefile for pseudofs.

This commit is contained in:
Dag-Erling Smørgrav 2001-06-10 18:47:23 +00:00
parent f3573821ba
commit 3ba7e430ab
2 changed files with 20 additions and 0 deletions

6
sys/modules/fs/Makefile Normal file
View File

@ -0,0 +1,6 @@
# $FreeBSD$
SUBDIR =
SUBDIR += pseudofs
.include <bsd.subdir.mk>

View File

@ -0,0 +1,14 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../fs/pseudofs
CFLAGS+=-g -DINVARIANT_SUPPORT -DINVARIANTS -DWITNESS
KMOD= pseudofs
SRCS= vnode_if.h \
pseudofs.c \
pseudofs_fileno.c \
pseudofs_vncache.c \
pseudofs_vnops.c
NOMAN=
.include <bsd.kmod.mk>