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