1 1.141 martin # $NetBSD: Makefile,v 1.141 2025/02/24 15:59:04 martin Exp $ 2 1.19 cgd # @(#)Makefile 8.5 (Berkeley) 3/31/94 3 1.1 cgd 4 1.19 cgd # Not ported: XNSrouted enpload scsiformat startslip 5 1.51 ws # Missing: icheck ncheck 6 1.8 cgd 7 1.85 matt .include <bsd.own.mk> 8 1.85 matt 9 1.135 mrg SUBDIR= amrctl apmlabel atactl badsect bioctl blkdiscard brconfig \ 10 1.130 bouyer canconfig ccdconfig cgdconfig chown \ 11 1.140 christos devpubd disklabel dkctl dkscan_bsdlabel dmesg dmctl drvctl \ 12 1.141 martin fastboot fdisk fsck fsirand gpt ifconfig init ldconfig luactl \ 13 1.128 nonaka mbrlabel mknod modload modstat modunload mount \ 14 1.128 nonaka newbtconf nologin nvmectl \ 15 1.124 christos ping pppoectl raidctl reboot rcorder rndctl route routed \ 16 1.106 rumble savecore scan_ffs scsictl shutdown slattach svhlabel swapctl sysctl \ 17 1.133 khorben ttyflags umbctl umount veriexecctl wdogctl wsconsctl 18 1.21 cgd 19 1.141 martin # efi runtime support is currently only available on x86 and little endian 20 1.141 martin # ARM and riscv platforms 21 1.141 martin .if (${MACHINE} == "amd64" || \ 22 1.141 martin ${MACHINE} == "i386" || \ 23 1.141 martin ((${MACHINE_CPU} == "riscv" || ${MACHINE_CPU} == "arm") && \ 24 1.141 martin ${MACHINE_ARCH:M*eb} == "")) 25 1.141 martin SUBDIR+= efi 26 1.141 martin .endif 27 1.141 martin 28 1.141 martin 29 1.21 cgd # support for various file systems 30 1.107 tsutsui SUBDIR+= newfs_ext2fs fsck_ext2fs 31 1.117 haad SUBDIR+= newfs fsck_ffs fsdb dump restore clri tunefs resize_ffs 32 1.138 nia SUBDIR+= newfs_lfs fsck_lfs dump_lfs resize_lfs 33 1.69 jdolecek SUBDIR+= newfs_msdos fsck_msdos 34 1.139 nia SUBDIR+= newfs_sysvbfs 35 1.136 reinoud SUBDIR+= newfs_udf fsck_udf 36 1.139 nia SUBDIR+= newfs_v7fs fsck_v7fs 37 1.139 nia SUBDIR+= mount_ados 38 1.132 christos SUBDIR+= mount_autofs 39 1.81 jdolecek SUBDIR+= mount_cd9660 40 1.139 nia SUBDIR+= mount_chfs 41 1.139 nia SUBDIR+= mount_efs 42 1.82 jdolecek SUBDIR+= mount_ext2fs 43 1.81 jdolecek SUBDIR+= mount_fdesc 44 1.139 nia SUBDIR+= mount_filecore 45 1.81 jdolecek SUBDIR+= mount_ffs 46 1.139 nia SUBDIR+= mount_hfs 47 1.81 jdolecek SUBDIR+= mount_kernfs 48 1.138 nia SUBDIR+= mount_lfs 49 1.81 jdolecek SUBDIR+= mount_msdos 50 1.98 reinoud SUBDIR+= mount_udf 51 1.81 jdolecek SUBDIR+= mount_nfs 52 1.139 nia SUBDIR+= mount_nilfs 53 1.81 jdolecek SUBDIR+= mount_ntfs 54 1.81 jdolecek SUBDIR+= mount_null 55 1.81 jdolecek SUBDIR+= mount_overlay 56 1.21 cgd SUBDIR+= mount_portal 57 1.81 jdolecek SUBDIR+= mount_procfs 58 1.89 christos SUBDIR+= mount_ptyfs 59 1.115 pooka SUBDIR+= mount_puffs 60 1.134 jmcneill SUBDIR+= mount_qemufwcfg 61 1.139 nia SUBDIR+= mount_sysvbfs 62 1.95 jmmv SUBDIR+= mount_tmpfs 63 1.81 jdolecek SUBDIR+= mount_umap 64 1.81 jdolecek SUBDIR+= mount_union 65 1.139 nia SUBDIR+= mount_v7fs 66 1.58 itojun 67 1.93 lukem .if (${USE_INET6} != "no") 68 1.127 roy SUBDIR+= ping6 69 1.85 matt .endif 70 1.68 itojun 71 1.122 riz .if (${MKISCSI} != "no") 72 1.122 riz SUBDIR+= iscsictl iscsid 73 1.122 riz .endif 74 1.122 riz 75 1.68 itojun # IPsec 76 1.68 itojun SUBDIR+= setkey 77 1.7 cgd 78 1.1 cgd .include <bsd.subdir.mk> 79