forked from NetBSD/src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
161 lines (122 loc) · 2.79 KB
/
Makefile
File metadata and controls
161 lines (122 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# $NetBSD: Makefile,v 1.145 2025/12/28 19:07:42 thorpej Exp $
# @(#)Makefile 8.5 (Berkeley) 3/31/94
# Not ported: XNSrouted enpload scsiformat startslip
# Missing: icheck ncheck
.include <bsd.own.mk>
SUBDIR= amrctl apmlabel atactl badsect bioctl blkdiscard brconfig \
canconfig ccdconfig cgdconfig chown \
devpubd disklabel dkctl dkscan_bsdlabel dmesg dmctl drvctl \
fastboot fdisk fsck fsirand gpt ifconfig init ldconfig luactl \
mbrlabel mknod modload modstat modunload mount \
newbtconf nologin nvmectl \
ping pppoectl raidctl reboot rcorder rndctl route routed \
savecore scsictl shutdown slattach svhlabel swapctl sysctl \
ttyflags umount veriexecctl wdogctl wsconsctl
.if ${HAVE_EFI_RT} == "yes"
SUBDIR+= efi
.endif
#
# support for various file systems
#
# Always include FFS.
#
SUBDIR+= newfs fsck_ffs fsdb dump restore clri tunefs resize_ffs mount_ffs \
scan_ffs
.if (${MKADOSFS} != "no")
SUBDIR+= mount_ados
.endif
.if (${MKAUTOFS} != "no")
SUBDIR+= mount_autofs
.endif
.if (${MKCD9660FS} != "no")
SUBDIR+= mount_cd9660
.endif
.if (${MKCHFS} != "no")
SUBDIR+= mount_chfs
.endif
.if (${MKEFS} != "no")
SUBDIR+= mount_efs
.endif
.if (${MKEXT2FS} != "no")
SUBDIR+= newfs_ext2fs fsck_ext2fs mount_ext2fs
.endif
.if (${MKFDESCFS} != "no")
SUBDIR+= mount_fdesc
.endif
.if (${MKFILECOREFS} != "no")
SUBDIR+= mount_filecore
.endif
.if (${MKHFS} != "no")
SUBDIR+= mount_hfs
.endif
.if (${MKKERNFS} != "no")
SUBDIR+= mount_kernfs
.endif
.if (${MKLFS} != "no")
SUBDIR+= newfs_lfs fsck_lfs dump_lfs resize_lfs mount_lfs
.endif
.if (${MKMSDOSFS} != "no")
SUBDIR+= newfs_msdos fsck_msdos mount_msdos
.endif
.if (${MKNFS} != "no")
SUBDIR+= mount_nfs
.endif
.if (${MKNILFS} != "no")
SUBDIR+= mount_nilfs
.endif
.if (${MKNTFS} != "no")
SUBDIR+= mount_ntfs
.endif
.if (${MKNULLFS} != "no")
SUBDIR+= mount_null
.endif
.if (${MKFULLFS} != "no")
SUBDIR+= mount_full
.endif
.if (${MKOVERLAYFS} != "no")
SUBDIR+= mount_overlay
.endif
# XXX De-tangle this web (puffs) later.
SUBDIR+= mount_portal
.if (${MKPROCFS} != "no")
SUBDIR+= mount_procfs
.endif
.if (${MKPTYFS} != "no")
SUBDIR+= mount_ptyfs
.endif
# XXX De-tangle this web (puffs) later.
SUBDIR+= mount_puffs
.if (${MKQEMUFWCFG} != "no")
SUBDIR+= mount_qemufwcfg
.endif
.if (${MKSYSVBFS} != "no")
SUBDIR+= newfs_sysvbfs mount_sysvbfs
.endif
.if (${MKTMPFS} != "no")
SUBDIR+= mount_tmpfs
.endif
.if (${MKUDF} != "no")
SUBDIR+= newfs_udf fsck_udf mount_udf
.endif
.if (${MKUMAPFS} != "no")
SUBDIR+= mount_umap
.endif
.if (${MKUNIONFS} != "no")
SUBDIR+= mount_union
.endif
.if (${MKV7FS} != "no")
SUBDIR+= newfs_v7fs fsck_v7fs mount_v7fs
.endif
.if (${USE_INET6} != "no")
SUBDIR+= ping6
.endif
.if (${MKISCSI} != "no")
SUBDIR+= iscsictl iscsid
.endif
.if (${MKIPSEC} != "no")
SUBDIR+= setkey
.endif
.if (${MKUSB} != "no")
SUBDIR+= umbctl
.endif
.include <bsd.subdir.mk>