aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/hpfs
diff options
context:
space:
mode:
authorSemen Ustimenko <semenu@FreeBSD.org>1999-12-09 19:10:13 +0000
committerSemen Ustimenko <semenu@FreeBSD.org>1999-12-09 19:10:13 +0000
commitdaabca392e45ed53b8ee00461ecb36af2909295d (patch)
tree3b855293656477074a7dc8d63ced4637130cb81f /sys/modules/hpfs
parent9578442e8d4c3668530d7f2f0c662524aa2ff971 (diff)
downloadsrc-daabca392e45ed53b8ee00461ecb36af2909295d.tar.gz
src-daabca392e45ed53b8ee00461ecb36af2909295d.zip
First version of HPFS stuff.
Notes
Notes: svn path=/head/; revision=54371
Diffstat (limited to 'sys/modules/hpfs')
-rw-r--r--sys/modules/hpfs/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/sys/modules/hpfs/Makefile b/sys/modules/hpfs/Makefile
new file mode 100644
index 000000000000..4bb085ba528c
--- /dev/null
+++ b/sys/modules/hpfs/Makefile
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../fs/hpfs
+KMOD= hpfs
+SRCS= hpfs_vfsops.c hpfs_vnops.c hpfs_hash.c hpfs_subr.c hpfs_lookup.c \
+ hpfs_alsubr.c opt_vmpage.h
+NOMAN=
+VFS_KLD=
+CFLAGS+= -DHPFS
+CLEANFILES= opt_vmpage.h
+
+opt_vmpage.h:
+ touch ${.TARGET}
+
+.include <bsd.kmod.mk>