1 # $NetBSD: Makefile,v 1.131 2017/11/25 23:29:43 jmcneill 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 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 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_sysvbfs 25 SUBDIR+= newfs_udf 26 SUBDIR+= newfs_v7fs fsck_v7fs 27 SUBDIR+= mount_ados 28 SUBDIR+= mount_cd9660 29 SUBDIR+= mount_chfs 30 SUBDIR+= mount_efs 31 SUBDIR+= mount_ext2fs 32 SUBDIR+= mount_fdesc 33 SUBDIR+= mount_filecore 34 SUBDIR+= mount_ffs 35 SUBDIR+= mount_hfs 36 SUBDIR+= mount_kernfs 37 SUBDIR+= mount_lfs 38 SUBDIR+= mount_msdos 39 SUBDIR+= mount_udf 40 SUBDIR+= mount_nfs 41 SUBDIR+= mount_nilfs 42 SUBDIR+= mount_ntfs 43 SUBDIR+= mount_null 44 SUBDIR+= mount_overlay 45 SUBDIR+= mount_portal 46 SUBDIR+= mount_procfs 47 SUBDIR+= mount_ptyfs 48 SUBDIR+= mount_puffs 49 SUBDIR+= mount_sysvbfs 50 SUBDIR+= mount_tmpfs 51 SUBDIR+= mount_umap 52 SUBDIR+= mount_union 53 SUBDIR+= mount_v7fs 54 55 .if ${MACHINE} == "amd64" || ${MACHINE} == "i386" 56 SUBDIR+= mount_qemufwcfg 57 .endif 58 59 .if (${USE_INET6} != "no") 60 SUBDIR+= ping6 61 .endif 62 63 .if (${MKISCSI} != "no") 64 SUBDIR+= iscsictl iscsid 65 .endif 66 67 # IPsec 68 SUBDIR+= setkey 69 70 .include <bsd.subdir.mk> 71