Add note about reboot before 'make upgrade' step.
[dragonfly.git] / sbin / Makefile
blob0c52329e2c684b4bed018b156e92e7d355e35170
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 $
4 # XXX MISSING: icheck ncheck
6 SUBDIR= adjkerntz \
7 atm \
8 badsect \
9 camcontrol \
10 ccdconfig \
11 clri \
12 comcontrol \
13 cryptdisks \
14 devattr \
15 devd \
16 devfsctl \
17 dhclient \
18 disklabel32 \
19 disklabel64 \
20 diskinfo \
21 dmesg \
22 dump \
23 dumpfs \
24 dumpon \
25 ffsinfo \
26 fsck \
27 fsck_msdosfs \
28 fsdb \
29 fsid \
30 fsirand \
31 getdevpath \
32 growfs \
33 gpt \
34 hammer \
35 ifconfig \
36 init \
37 ip6fw \
38 ipfw \
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_hpfs \
57 mount_msdos \
58 mount_nfs \
59 mount_ntfs \
60 mount_null \
61 mount_portal \
62 mount_std \
63 mount_tmpfs \
64 mount_udf \
65 mount_union \
66 mountd \
67 natacontrol \
68 natd \
69 newbtconf \
70 newfs \
71 newfs_hammer \
72 newfs_msdos \
73 nfsd \
74 nfsiod \
75 nologin \
76 nos-tun \
77 ping \
78 ping6 \
79 quotacheck \
80 reboot \
81 rconfig \
82 rcorder \
83 restore \
84 route \
85 routed \
86 rtsol \
87 rcrun \
88 savecore \
89 shutdown \
90 slattach \
91 spppcontrol \
92 startslip \
93 swapon \
94 sysctl \
95 tcplay \
96 tunefs \
97 udevd \
98 umount \
99 usched \
100 vinum \
101 vquota
103 .if ${MACHINE_ARCH} == i386 || ${MACHINE_ARCH} == x86_64
104 .if ${MACHINE_ARCH} == i386
105 SUBDIR+=kget
106 .endif
107 SUBDIR+=mount_nwfs \
108 mount_smbfs \
109 fdisk \
110 nextboot
111 .endif
113 .if exists(${.CURDIR}/${MACHINE})
114 SUBDIR+= ${MACHINE}
115 .endif
116 .if exists(${.CURDIR}/${MACHINE_ARCH})
117 SUBDIR+= ${MACHINE_ARCH}
118 .endif
120 # maximum parallelism
122 SUBDIR_ORDERED=
124 .include <bsd.subdir.mk>