Deleted Added
full compact
Makefile (124197) Makefile (124587)
1# @(#)Makefile 8.5 (Berkeley) 3/31/94
1# @(#)Makefile 8.5 (Berkeley) 3/31/94
2# $FreeBSD: head/sbin/Makefile 124197 2004-01-06 21:05:13Z alfred $
2# $FreeBSD: head/sbin/Makefile 124587 2004-01-16 15:23:19Z ru $
3
4# XXX MISSING: icheck ncheck
5
6SUBDIR= adjkerntz \
7 atacontrol \
3
4# XXX MISSING: icheck ncheck
5
6SUBDIR= adjkerntz \
7 atacontrol \
8 ${_atm} \
8 badsect \
9 bsdlabel \
10 camcontrol \
11 ccdconfig \
12 clri \
13 comcontrol \
14 conscontrol \
9 badsect \
10 bsdlabel \
11 camcontrol \
12 ccdconfig \
13 clri \
14 comcontrol \
15 conscontrol \
16 ${_devd} \
15 devfs \
16 dhclient \
17 dmesg \
18 dump \
19 dumpfs \
20 dumpon \
17 devfs \
18 dhclient \
19 dmesg \
20 dump \
21 dumpfs \
22 dumpon \
23 ${_fdisk} \
24 ${_fdisk_pc98} \
21 ffsinfo \
22 fsck \
23 fsck_ffs \
24 fsck_msdosfs \
25 fsdb \
26 fsirand \
27 gbde \
25 ffsinfo \
26 fsck \
27 fsck_ffs \
28 fsck_msdosfs \
29 fsdb \
30 fsirand \
31 gbde \
32 ${_gpt} \
28 growfs \
29 ifconfig \
30 init \
33 growfs \
34 ifconfig \
35 init \
36 ${_ip6fw} \
37 ${_ipf} \
38 ${_ipfs} \
39 ${_ipfstat} \
31 ipfw \
40 ipfw \
41 ${_ipmon} \
42 ${_ipnat} \
32 kldconfig \
33 kldload \
34 kldstat \
35 kldunload \
36 ldconfig \
43 kldconfig \
44 kldload \
45 kldstat \
46 kldunload \
47 ldconfig \
48 ${_mca} \
37 md5 \
38 mdconfig \
39 mdmfs \
40 mknod \
41 mksnap_ffs \
42 mount \
43 mount_cd9660 \
44 mount_ext2fs \

--- 8 unchanged lines hidden (view full) ---

53 mount_unionfs \
54 natd \
55 newfs \
56 newfs_msdos \
57 nfsiod \
58 nologin \
59 nos-tun \
60 ping \
49 md5 \
50 mdconfig \
51 mdmfs \
52 mknod \
53 mksnap_ffs \
54 mount \
55 mount_cd9660 \
56 mount_ext2fs \

--- 8 unchanged lines hidden (view full) ---

65 mount_unionfs \
66 natd \
67 newfs \
68 newfs_msdos \
69 nfsiod \
70 nologin \
71 nos-tun \
72 ping \
73 ${_ping6} \
61 quotacheck \
62 raidctl \
63 rcorder \
64 reboot \
65 restore \
66 route \
67 routed \
68 rtsol \
69 savecore \
74 quotacheck \
75 raidctl \
76 rcorder \
77 reboot \
78 restore \
79 route \
80 routed \
81 rtsol \
82 savecore \
83 ${_sconfig} \
70 shutdown \
71 slattach \
72 spppcontrol \
73 startslip \
74 sunlabel \
75 swapon \
76 sysctl \
77 tunefs \
84 shutdown \
85 slattach \
86 spppcontrol \
87 startslip \
88 sunlabel \
89 swapon \
90 sysctl \
91 tunefs \
78 umount
92 umount \
93 ${_vinum}
79
80.if !defined(NOATM)
94
95.if !defined(NOATM)
81SUBDIR+=atm
96_atm= atm
82.endif
83
84.if !defined(NO_CXX)
97.endif
98
99.if !defined(NO_CXX)
85SUBDIR+=devd
100_devd= devd
86.endif
87
88.if !defined(NO_IPFILTER)
101.endif
102
103.if !defined(NO_IPFILTER)
89SUBDIR+=ipf \
90 ipfs \
91 ipfstat \
92 ipmon \
93 ipnat
104_ipf= ipf
105_ipfs= ipfs
106_ipfstat= ipfstat
107_ipmon= ipmon
108_ipnat= ipnat
94.endif
95
96.if !defined(NOINET6)
109.endif
110
111.if !defined(NOINET6)
97SUBDIR+=ip6fw \
98 ping6
112_ip6fw= ip6fw
113_ping6= ping6
99.endif
100
101.if !defined(NO_VINUM)
114.endif
115
116.if !defined(NO_VINUM)
102SUBDIR+=vinum
117_vinum= vinum
103.endif
104
105.if ${MACHINE_ARCH} == "i386"
118.endif
119
120.if ${MACHINE_ARCH} == "i386"
106SUBDIR+=sconfig
107.if ${MACHINE} == "pc98"
108SUBDIR+=fdisk_pc98
109.else
110SUBDIR+=fdisk
121.if ${MACHINE} == "i386"
122_fdisk= fdisk
123.elif ${MACHINE} == "pc98"
124_fdisk_pc98= fdisk_pc98
111.endif
125.endif
126_sconfig= sconfig
112.endif
113
127.endif
128
114.if ${MACHINE_ARCH} == "ia64"
115SUBDIR+=fdisk \
116 gpt \
117 mca
129.if ${MACHINE_ARCH} == "amd64"
130_fdisk= fdisk
131_gpt= gpt
118.endif
119
132.endif
133
120.if ${MACHINE_ARCH} == "amd64"
121SUBDIR+=fdisk \
122 gpt
134.if ${MACHINE_ARCH} == "ia64"
135_fdisk= fdisk
136_gpt= gpt
137_mca= mca
123.endif
124
125.include <bsd.subdir.mk>
138.endif
139
140.include <bsd.subdir.mk>