Home | History | Annotate | Line # | Download | only in puffs
Makefile revision 1.20
      1 #	$NetBSD: Makefile,v 1.20 2022/05/27 07:28:21 nia 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
      9 SUBDIR+=rump_msdos rump_nfs rump_ntfs rump_syspuffs rump_sysvbfs
     10 SUBDIR+=rump_tmpfs rump_udf rump_v7fs
     11 
     12 .  if ${MKLFS} != "no"
     13 SUBDIR+=rump_lfs
     14 .  endif
     15 
     16 #
     17 # The following are not built by default
     18 #
     19 
     20 # userspace fdesc server cannot grope the fd info from the kernel,
     21 # and is therefore not useful for the average user
     22 #SUBDIR+=rump_fdesc
     23 
     24 # ditto for kernfs
     25 #SUBDIR+=rump_kernfs
     26 
     27 # rump_mqmfs is just another ffs, useful mainly for debugging
     28 #SUBDIR+=rump_nqmfs
     29 
     30 # rump_au-naturel presents lets you access '/' for a rump kernel.
     31 # mostly for debugging.
     32 #SUBDIR+=rump_au-naturel
     33 
     34 .endif
     35 
     36 .include <bsd.subdir.mk>
     37