xref: /minix/sbin/Makefile (revision b89261ba)
1#	$NetBSD: Makefile,v 1.127 2014/09/11 13:10:03 roy 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
9SUBDIR= \
10	chown \
11	fsck init \
12	mknod nologin \
13	ping \
14	reboot \
15	shutdown sysctl \
16
17# support for various file systems
18SUBDIR+= newfs_ext2fs fsck_ext2fs newfs_msdos newfs_udf newfs_v7fs
19.if !defined(__MINIX)
20SUBDIR+= newfs fsck_ffs fsdb dump restore clri tunefs resize_ffs
21SUBDIR+= newfs_lfs fsck_lfs dump_lfs resize_lfs
22SUBDIR+= newfs_msdos fsck_msdos
23SUBDIR+= newfs_sysvbfs
24SUBDIR+= newfs_udf
25SUBDIR+= newfs_v7fs fsck_v7fs
26SUBDIR+= mount_ados
27SUBDIR+= mount_cd9660
28SUBDIR+= mount_chfs
29SUBDIR+= mount_efs
30SUBDIR+= mount_ext2fs
31SUBDIR+= mount_fdesc
32SUBDIR+= mount_filecore
33SUBDIR+= mount_ffs
34SUBDIR+= mount_hfs
35SUBDIR+= mount_kernfs
36SUBDIR+= mount_lfs
37SUBDIR+= mount_msdos
38SUBDIR+= mount_udf
39SUBDIR+= mount_nfs
40SUBDIR+= mount_nilfs
41SUBDIR+= mount_ntfs
42SUBDIR+= mount_null
43SUBDIR+= mount_overlay
44SUBDIR+= mount_portal
45SUBDIR+= mount_procfs
46SUBDIR+= mount_ptyfs
47SUBDIR+= mount_puffs
48SUBDIR+= mount_sysvbfs
49SUBDIR+= mount_tmpfs
50SUBDIR+= mount_umap
51SUBDIR+= mount_union
52SUBDIR+= mount_v7fs
53
54.if (${MKCRYPTO} != "no")
55SUBDIR+= cgdconfig
56.endif
57
58.if (${USE_INET6} != "no")
59SUBDIR+= ping6
60.endif
61
62.if (${MKISCSI} != "no")
63SUBDIR+= iscsictl iscsid
64.endif
65
66# IPsec
67SUBDIR+= setkey
68
69.endif # !defined(__MINIX)
70.include <bsd.subdir.mk>
71