]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - etc/rc.d/Makefile
MFC r277740,r278053:
[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         iscsictl \
67         iscsid \
68         ${_kadmind} \
69         ${_kdc} \
70         keyserv \
71         ${_kfd} \
72         kld \
73         kldxref \
74         ${_kpasswdd} \
75         ldconfig \
76         local \
77         localpkg \
78         lockd \
79         mixer \
80         motd \
81         mountcritlocal \
82         mountcritremote \
83         mountlate \
84         mdconfig \
85         mdconfig2 \
86         mountd \
87         moused \
88         mroute6d \
89         mrouted \
90         msgs \
91         natd \
92         netif \
93         netoptions \
94         netwait \
95         newsyslog \
96         nfsclient \
97         nfscbd \
98         nfsd \
99         nfsuserd \
100         nisdomain \
101         ${_nscd} \
102         nsswitch \
103         ntpd \
104         ntpdate \
105         ${_opensm} \
106         othermta \
107         pf \
108         pflog \
109         pfsync \
110         postrandom \
111         powerd \
112         power_profile \
113         ppp \
114         pppoed \
115         pwcheck \
116         quota \
117         random \
118         rarpd \
119         rctl \
120         resolv \
121         rfcomm_pppd_server \
122         root \
123         route6d \
124         routed \
125         routing \
126         rpcbind \
127         rtadvd \
128         rtsold \
129         rwho \
130         savecore \
131         sdpd \
132         securelevel \
133         sendmail \
134         serial \
135         sppp \
136         ${_sshd} \
137         statd \
138         static_arp \
139         static_ndp \
140         stf \
141         swap \
142         swaplate \
143         syscons \
144         sysctl \
145         syslogd \
146         timed \
147         tmp \
148         ${_ubthidhci} \
149         ugidfw \
150         ${_unbound} \
151         ${_utx} \
152         var \
153         virecover \
154         watchdogd \
155         ypbind \
156         yppasswdd \
157         ypserv \
158         ypset \
159         ypupdated \
160         ypxfrd \
161         zfs \
162         zvol
163
164 .if ${MK_AMD} != "no"
165 FILES+=         amd
166 .endif
167
168 .if ${MK_APM} != "no"
169 FILES+= apm
170 FILES+= apmd
171 .endif
172
173 .if ${MK_BLUETOOTH} != "no"
174 _bluetooth=     bluetooth
175 _bthidd=        bthidd
176 _hcsecd=        hcsecd
177 _ubthidhci=     ubthidhci
178 .endif
179
180 .if ${MK_BSNMP} != "no"
181 FILES+=         bsnmpd
182 .endif
183
184 .if ${MK_IPX} != "no"
185 _ipxrouted=     ipxrouted
186 .endif
187
188 .if ${MK_JAIL} != "no"
189 FILES+=         jail
190 .endif
191
192 .if ${MK_KERBEROS} != "no"
193 _kadmind=       kadmind
194 _kdc=           kdc
195 _kfd=           kfd
196 _kpasswdd=      kpasswdd
197 .endif
198
199 .if ${MK_LPR} != "no"
200 FILES+=         lpd
201 .endif
202
203 .if ${MK_NS_CACHING} != "no"
204 _nscd=          nscd
205 .endif
206
207 .if ${MK_OFED} != "no"
208 _opensm=        opensm
209 .endif
210
211 .if ${MK_OPENSSH} != "no"
212 _sshd=          sshd
213 .endif
214
215 .if ${MK_UNBOUND} != "no"
216 _unbound=       local_unbound
217 .endif
218
219 .if ${MK_UTMPX} != "no"
220 _utx=           utx
221 .endif
222
223 .if ${MK_WIRELESS} != "no"
224 FILES+=         hostapd
225 FILES+=         wpa_supplicant
226 .endif
227
228 FILESDIR=       /etc/rc.d
229 FILESMODE=      ${BINMODE}
230
231 .include <bsd.prog.mk>