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