]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - etc/rc.d/Makefile
MFC r358694:
[FreeBSD/stable/9.git] / etc / rc.d / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 FILES=  DAEMON \
6         FILESYSTEMS \
7         LOGIN \
8         NETWORKING \
9         SERVERS \
10         abi \
11         addswap \
12         adjkerntz \
13         archdep \
14         atm1 \
15         atm2 \
16         atm3 \
17         auditd \
18         auditdistd \
19         bgfsck \
20         ${_bluetooth} \
21         bridge \
22         ${_bthidd} \
23         cleanvar \
24         cleartmp \
25         cron \
26         ddb \
27         defaultroute \
28         devd \
29         devfs \
30         dhclient \
31         dmesg \
32         dumpon \
33         encswap \
34         faith \
35         fsck \
36         gbde \
37         geli \
38         geli2 \
39         gptboot \
40         gssd \
41         ${_hcsecd} \
42         hostid \
43         hostid_save \
44         hostname \
45         initrandom \
46         ip6addrctl \
47         ipfilter \
48         ipfs \
49         ipfw \
50         ipmon \
51         ipnat \
52         ipsec \
53         ${_ipxrouted} \
54         kadmind \
55         kerberos \
56         kld \
57         kldxref \
58         kpasswdd \
59         ldconfig \
60         local \
61         localpkg \
62         lockd \
63         mixer \
64         motd \
65         mountcritlocal \
66         mountcritremote \
67         mountlate \
68         mdconfig \
69         mdconfig2 \
70         mountd \
71         mroute6d \
72         mrouted \
73         msgs \
74         named \
75         natd \
76         netif \
77         netoptions \
78         netwait \
79         newsyslog \
80         nfsclient \
81         nfscbd \
82         nfsd \
83         nfsuserd \
84         nisdomain \
85         ${_nscd} \
86         nsswitch \
87         ntpdate \
88         ${_opensm} \
89         pf \
90         pflog \
91         pfsync \
92         ppp \
93         pppoed \
94         pwcheck \
95         quota \
96         random \
97         rarpd \
98         rctl \
99         resolv \
100         rfcomm_pppd_server \
101         root \
102         route6d \
103         routing \
104         rpcbind \
105         rtadvd \
106         rtsold \
107         savecore \
108         sdpd \
109         securelevel \
110         serial \
111         sppp \
112         ${_sshd} \
113         statd \
114         static_arp \
115         static_ndp \
116         stf \
117         swap1 \
118         sysctl \
119         syslogd \
120         tmp \
121         ${_ubthidhci} \
122         ugidfw \
123         var \
124         virecover \
125         watchdogd \
126         ypbind \
127         yppasswdd \
128         ypserv \
129         ypset \
130         ypupdated \
131         ypxfrd \
132         zfs \
133         zvol
134
135 .if ${MK_ACCT} != "no"
136 FILES+=         accounting
137 .endif
138
139 .if ${MK_ACPI} != "no"
140 FILES+=         power_profile
141 .endif
142
143 .if ${MK_ACPI} != "no" || ${MK_APM} != "no"
144 FILES+=         powerd
145 .endif
146
147 .if ${MK_AMD} != "no"
148 FILES+=         amd
149 .endif
150
151 .if ${MK_APM} != "no"
152 FILES+= apm
153 FILES+= apmd
154 .endif
155
156 .if ${MK_BLUETOOTH} != "no"
157 _bluetooth=     bluetooth
158 _bthidd=        bthidd
159 _hcsecd=        hcsecd
160 _ubthidhci=     ubthidhci
161 .endif
162
163 .if ${MK_BOOTPARAMD} != "no"
164 FILES+=         bootparams
165 .endif
166
167 .if ${MK_BSNMP} != "no"
168 FILES+=         bsnmpd
169 .endif
170
171 .if ${MK_CCD} != "no"
172 FILES+=         ccd
173 .endif
174
175 .if ${MK_FTP} != "no"
176 FILES+=         ftpd
177 .endif
178
179 .if ${MK_HAST} != "no"
180 FILES+=         hastd
181 .endif
182
183 .if ${MK_INETD} != "no"
184 FILES+=         inetd
185 .endif
186
187 .if ${MK_IPX} != "no"
188 _ipxrouted=     ipxrouted
189 .endif
190
191 .if ${MK_JAIL} != "no"
192 FILES+=         jail
193 .endif
194
195 .if ${MK_LEGACY_CONSOLE} != "no"
196 FILES+=         moused
197 FILES+=         syscons
198 .endif
199
200 .if ${MK_LPR} != "no"
201 FILES+=         lpd
202 .endif
203
204 .if ${MK_MAIL} != "no"
205 FILES+=         othermta
206 .endif
207
208 .if ${MK_NS_CACHING} != "no"
209 _nscd=          nscd
210 .endif
211
212 .if ${MK_NTP} != "no"
213 FILES+=         ntpd
214 .endif
215
216 .if ${MK_OFED} != "no"
217 _opensm=        opensm
218 .endif
219
220 .if ${MK_OPENSSL} != "no"
221 FILES+=         keyserv
222 .endif
223
224 .if ${MK_OPENSSH} != "no"
225 _sshd=          sshd
226 .endif
227
228 .if ${MK_PF} != "no"
229 FILES+=         ftp-proxy
230 .endif
231
232 .if ${MK_RCMDS} != "no"
233 FILES+=         rwho
234 .endif
235
236 .if ${MK_ROUTED} != "no"
237 FILES+=         routed
238 .endif
239
240 .if ${MK_SENDMAIL} != "no"
241 FILES+=         sendmail
242 .endif
243
244 .if ${MK_TIMED} != "no"
245 FILES+=         timed
246 .endif
247
248 .if ${MK_WIRELESS} != "no"
249 FILES+=         hostapd
250 FILES+=         wpa_supplicant
251 .endif
252
253 FILESDIR=       /etc/rc.d
254 FILESMODE=      ${BINMODE}
255
256 .include <bsd.prog.mk>