Home | History | Annotate | Line # | Download | only in sbin
Makefile revision 1.138
      1  1.137       nia #	$NetBSD: Makefile,v 1.138 2022/06/06 10:56:28 nia 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.130    bouyer 	devpubd disklabel dkctl dkscan_bsdlabel dmesg dmctl \
     12  1.125   mbalmer 	drvctl 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.21       cgd # support for various file systems
     20  1.107   tsutsui SUBDIR+= newfs_ext2fs fsck_ext2fs
     21  1.117      haad SUBDIR+= newfs fsck_ffs fsdb dump restore clri tunefs resize_ffs
     22  1.138       nia SUBDIR+= newfs_lfs fsck_lfs dump_lfs resize_lfs
     23   1.69  jdolecek SUBDIR+= newfs_msdos fsck_msdos
     24  1.136   reinoud SUBDIR+= newfs_udf fsck_udf
     25  1.132  christos SUBDIR+= mount_autofs
     26   1.81  jdolecek SUBDIR+= mount_cd9660
     27   1.82  jdolecek SUBDIR+= mount_ext2fs
     28   1.81  jdolecek SUBDIR+= mount_fdesc
     29   1.81  jdolecek SUBDIR+= mount_ffs
     30   1.81  jdolecek SUBDIR+= mount_kernfs
     31  1.138       nia SUBDIR+= mount_lfs
     32   1.81  jdolecek SUBDIR+= mount_msdos
     33   1.98   reinoud SUBDIR+= mount_udf
     34   1.81  jdolecek SUBDIR+= mount_nfs
     35   1.81  jdolecek SUBDIR+= mount_ntfs
     36   1.81  jdolecek SUBDIR+= mount_null
     37   1.81  jdolecek SUBDIR+= mount_overlay
     38   1.21       cgd SUBDIR+= mount_portal
     39   1.81  jdolecek SUBDIR+= mount_procfs
     40   1.89  christos SUBDIR+= mount_ptyfs
     41  1.115     pooka SUBDIR+= mount_puffs
     42  1.134  jmcneill SUBDIR+= mount_qemufwcfg
     43   1.95      jmmv SUBDIR+= mount_tmpfs
     44   1.81  jdolecek SUBDIR+= mount_umap
     45   1.81  jdolecek SUBDIR+= mount_union
     46   1.58    itojun 
     47   1.93     lukem .if (${USE_INET6} != "no")
     48  1.127       roy SUBDIR+= ping6
     49   1.85      matt .endif
     50   1.68    itojun 
     51  1.122       riz .if (${MKISCSI} != "no")
     52  1.122       riz SUBDIR+= iscsictl iscsid
     53  1.122       riz .endif
     54  1.122       riz 
     55  1.138       nia .if (${MKADOS} != "no")
     56  1.138       nia SUBDIR+= mount_ados
     57  1.138       nia .endif
     58  1.138       nia 
     59  1.138       nia .if (${MKCHFS} != "no")
     60  1.138       nia SUBDIR+= mount_chfs
     61  1.138       nia .endif
     62  1.138       nia 
     63  1.138       nia .if (${MKEFS} != "no")
     64  1.138       nia SUBDIR+= mount_efs
     65  1.138       nia .endif
     66  1.138       nia 
     67  1.138       nia .if (${MKFILECORE} != "no")
     68  1.138       nia SUBDIR+= mount_filecore
     69  1.138       nia .endif
     70  1.138       nia 
     71  1.138       nia .if (${MKHFS} != "no")
     72  1.138       nia SUBDIR+= mount_hfs
     73  1.138       nia .endif
     74  1.138       nia 
     75  1.137       nia .if (${MKLFS} != "no")
     76  1.137       nia SUBDIR+= newfs_lfs fsck_lfs dump_lfs resize_lfs
     77  1.137       nia SUBDIR+= mount_lfs
     78  1.137       nia .endif
     79  1.137       nia 
     80  1.138       nia .if (${MKNILFS} != "no")
     81  1.138       nia SUBDIR+= mount_nilfs
     82  1.138       nia .endif
     83  1.138       nia 
     84  1.138       nia .if (${MKSYSVBFS} != "no")
     85  1.138       nia SUBDIR+= newfs_sysvbfs
     86  1.138       nia SUBDIR+= mount_sysvbfs
     87  1.138       nia .endif
     88  1.138       nia 
     89  1.138       nia .if (${MKV7FS} != "no")
     90  1.138       nia SUBDIR+= newfs_v7fs fsck_v7fs
     91  1.138       nia SUBDIR+= mount_v7fs
     92  1.138       nia .endif
     93  1.138       nia 
     94   1.68    itojun # IPsec
     95   1.68    itojun SUBDIR+= setkey
     96    1.7       cgd 
     97    1.1       cgd .include <bsd.subdir.mk>
     98