Home | History | Annotate | Line # | Download | only in sbin
Makefile revision 1.138
      1 #	$NetBSD: Makefile,v 1.138 2022/06/06 10:56:28 nia Exp $
      2 #	@(#)Makefile	8.5 (Berkeley) 3/31/94
      3 
      4 # Not ported: XNSrouted enpload scsiformat startslip
      5 # Missing: icheck ncheck
      6 
      7 .include <bsd.own.mk>
      8 
      9 SUBDIR=	amrctl apmlabel atactl badsect bioctl blkdiscard brconfig \
     10 	canconfig ccdconfig cgdconfig chown \
     11 	devpubd disklabel dkctl dkscan_bsdlabel dmesg dmctl \
     12 	drvctl fastboot fdisk fsck fsirand gpt ifconfig init ldconfig luactl \
     13 	mbrlabel mknod modload modstat modunload mount \
     14 	newbtconf nologin nvmectl \
     15 	ping pppoectl raidctl reboot rcorder rndctl route routed \
     16 	savecore scan_ffs scsictl shutdown slattach svhlabel swapctl sysctl \
     17 	ttyflags umbctl umount veriexecctl wdogctl wsconsctl
     18 
     19 # support for various file systems
     20 SUBDIR+= newfs_ext2fs fsck_ext2fs
     21 SUBDIR+= newfs fsck_ffs fsdb dump restore clri tunefs resize_ffs
     22 SUBDIR+= newfs_lfs fsck_lfs dump_lfs resize_lfs
     23 SUBDIR+= newfs_msdos fsck_msdos
     24 SUBDIR+= newfs_udf fsck_udf
     25 SUBDIR+= mount_autofs
     26 SUBDIR+= mount_cd9660
     27 SUBDIR+= mount_ext2fs
     28 SUBDIR+= mount_fdesc
     29 SUBDIR+= mount_ffs
     30 SUBDIR+= mount_kernfs
     31 SUBDIR+= mount_lfs
     32 SUBDIR+= mount_msdos
     33 SUBDIR+= mount_udf
     34 SUBDIR+= mount_nfs
     35 SUBDIR+= mount_ntfs
     36 SUBDIR+= mount_null
     37 SUBDIR+= mount_overlay
     38 SUBDIR+= mount_portal
     39 SUBDIR+= mount_procfs
     40 SUBDIR+= mount_ptyfs
     41 SUBDIR+= mount_puffs
     42 SUBDIR+= mount_qemufwcfg
     43 SUBDIR+= mount_tmpfs
     44 SUBDIR+= mount_umap
     45 SUBDIR+= mount_union
     46 
     47 .if (${USE_INET6} != "no")
     48 SUBDIR+= ping6
     49 .endif
     50 
     51 .if (${MKISCSI} != "no")
     52 SUBDIR+= iscsictl iscsid
     53 .endif
     54 
     55 .if (${MKADOS} != "no")
     56 SUBDIR+= mount_ados
     57 .endif
     58 
     59 .if (${MKCHFS} != "no")
     60 SUBDIR+= mount_chfs
     61 .endif
     62 
     63 .if (${MKEFS} != "no")
     64 SUBDIR+= mount_efs
     65 .endif
     66 
     67 .if (${MKFILECORE} != "no")
     68 SUBDIR+= mount_filecore
     69 .endif
     70 
     71 .if (${MKHFS} != "no")
     72 SUBDIR+= mount_hfs
     73 .endif
     74 
     75 .if (${MKLFS} != "no")
     76 SUBDIR+= newfs_lfs fsck_lfs dump_lfs resize_lfs
     77 SUBDIR+= mount_lfs
     78 .endif
     79 
     80 .if (${MKNILFS} != "no")
     81 SUBDIR+= mount_nilfs
     82 .endif
     83 
     84 .if (${MKSYSVBFS} != "no")
     85 SUBDIR+= newfs_sysvbfs
     86 SUBDIR+= mount_sysvbfs
     87 .endif
     88 
     89 .if (${MKV7FS} != "no")
     90 SUBDIR+= newfs_v7fs fsck_v7fs
     91 SUBDIR+= mount_v7fs
     92 .endif
     93 
     94 # IPsec
     95 SUBDIR+= setkey
     96 
     97 .include <bsd.subdir.mk>
     98