Remove portal file system, mount_portal and examples.
[dragonfly.git] / sbin / Makefile
1 #       @(#)Makefile    8.5 (Berkeley) 3/31/94
2 # $FreeBSD: src/sbin/Makefile,v 1.77.2.9 2002/08/08 09:03:46 ru Exp $
3 #
4 # XXX MISSING:          icheck ncheck
5
6 SUBDIR= adjkerntz \
7         badsect \
8         camcontrol \
9         ccdconfig \
10         clri \
11         comcontrol \
12         devattr \
13         devd \
14         devfsctl \
15         dhclient \
16         disklabel32 \
17         disklabel64 \
18         diskinfo \
19         dmesg \
20         dump \
21         dumpfs \
22         dumpon \
23         ffsinfo \
24         fsck \
25         fsck_msdosfs \
26         fsdb \
27         fsid \
28         fsirand \
29         getdevpath \
30         growfs \
31         gpt \
32         hammer \
33         ${_hammer2} \
34         ifconfig \
35         init \
36         ip6fw \
37         ipfw \
38         ipfw3 \
39         iscontrol \
40         jscan \
41         kldconfig \
42         kldload \
43         kldstat \
44         kldunload \
45         ldconfig \
46         md5 \
47         mkinitrd \
48         mountctl \
49         mount \
50         mount_ufs \
51         mount_cd9660 \
52         mount_devfs \
53         mount_dirfs \
54         mount_ext2fs \
55         mount_hammer \
56         ${_mount_hammer2} \
57         mount_hpfs \
58         mount_msdos \
59         mount_nfs \
60         mount_ntfs \
61         mount_null \
62         mount_std \
63         mount_tmpfs \
64         mount_udf \
65         mountd \
66         natacontrol \
67         natd \
68         newbtconf \
69         newfs \
70         newfs_hammer \
71         ${_newfs_hammer2} \
72         newfs_msdos \
73         nfsd \
74         nfsiod \
75         nologin \
76         nos-tun \
77         nvmectl \
78         ping \
79         ping6 \
80         quotacheck \
81         reboot \
82         rconfig \
83         rcorder \
84         restore \
85         route \
86         routed \
87         rtsol \
88         rcrun \
89         savecore \
90         shutdown \
91         slattach \
92         spppcontrol \
93         startslip \
94         swapon \
95         sysctl \
96         svc \
97         tunefs \
98         udevd \
99         umount \
100         usched \
101         vinum \
102         vquota
103
104 .if ${MACHINE_ARCH} == "x86_64"
105 SUBDIR+=mount_smbfs \
106         fdisk \
107         nextboot
108 .endif
109
110 .if exists(${.CURDIR}/${MACHINE})
111 SUBDIR+= ${MACHINE}
112 .endif
113 .if exists(${.CURDIR}/${MACHINE_ARCH})
114 SUBDIR+= ${MACHINE_ARCH}
115 .endif
116
117 .if !defined(NO_CRYPT)
118 SUBDIR+=cryptdisks \
119         tcplay
120
121 # include hammer2 utilities (requires LibreSSL)
122 #
123 .  if defined(WANT_HAMMER2)
124 _mount_hammer2= mount_hammer2
125 _newfs_hammer2= newfs_hammer2
126 _hammer2=       hammer2
127 .  endif
128 .endif
129
130 # maximum parallelism
131 #
132 SUBDIR_ORDERED=
133
134 .include <bsd.subdir.mk>