1 # $NetBSD: Makefile,v 1.22 2024/10/12 16:16:36 bad Exp $ 2 3 .include <bsd.own.mk> 4 5 SUBDIR= mount_9p mount_psshfs mount_sysctlfs 6 7 .if (${MKRUMP} != "no") 8 SUBDIR+=rump_cd9660 rump_efs rump_ext2fs rump_ffs rump_hfs rump_lfs 9 SUBDIR+=rump_msdos rump_nfs rump_ntfs rump_syspuffs rump_sysvbfs 10 SUBDIR+=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_nqmfs is just another ffs, useful mainly for debugging 24 #SUBDIR+=rump_nqmfs 25 26 # rump_au-naturel 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