1#	$NetBSD: Makefile,v 1.21 2022/06/06 10:56:29 nia Exp $
2
3.include <bsd.own.mk>
4
5SUBDIR=	mount_9p mount_psshfs mount_sysctlfs
6
7.if (${MKRUMP} != "no")
8SUBDIR+=rump_cd9660 rump_efs rump_ext2fs rump_ffs rump_hfs rump_lfs
9SUBDIR+=rump_msdos rump_nfs rump_ntfs rump_syspuffs rump_sysvbfs
10SUBDIR+=rump_tmpfs rump_udf rump_v7fs
11
12#
13# The following are not built by default
14#
15
16# userspace fdesc server cannot grope the fd info from the kernel,
17# and is therefore not useful for the average user
18#SUBDIR+=rump_fdesc
19
20# ditto for kernfs
21#SUBDIR+=rump_kernfs
22
23# rump_mqmfs is just another ffs, useful mainly for debugging
24#SUBDIR+=rump_nqmfs
25
26# rump_au-naturel presents lets you access '/' for a rump kernel.
27# mostly for debugging.
28#SUBDIR+=rump_au-naturel
29
30.endif
31
32.include <bsd.subdir.mk>
33