]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/Makefile
Merge OpenSSL 1.0.1j.
[FreeBSD/FreeBSD.git] / etc / rc.d / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.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         bsnmpd \
31         ${_bthidd} \
32         ${_casperd} \
33         ccd \
34         cleanvar \
35         cleartmp \
36         cron \
37         ctld \
38         ddb \
39         defaultroute \
40         devd \
41         devfs \
42         dhclient \
43         dmesg \
44         dumpon \
45         faith \
46         fsck \
47         ftpd \
48         gbde \
49         geli \
50         geli2 \
51         gptboot \
52         gssd \
53         hastd \
54         ${_hcsecd} \
55         hostapd \
56         hostid \
57         hostid_save \
58         hostname \
59         inetd \
60         initrandom \
61         ip6addrctl \
62         ipfilter \
63         ipfs \
64         ipfw \
65         ipmon \
66         ipnat \
67         ipropd_master \
68         ipropd_slave \
69         ipsec \
70         iscsictl \
71         iscsid \
72         jail \
73         kadmind \
74         kdc \
75         kfd \
76         kld \
77         kldxref \
78         kpasswdd \
79         ldconfig \
80         local \
81         localpkg \
82         lockd \
83         lpd \
84         mixer \
85         motd \
86         mountcritlocal \
87         mountcritremote \
88         mountlate \
89         mdconfig \
90         mdconfig2 \
91         mountd \
92         moused \
93         mroute6d \
94         mrouted \
95         msgs \
96         natd \
97         netif \
98         netoptions \
99         netwait \
100         newsyslog \
101         nfsclient \
102         nfscbd \
103         nfsd \
104         nfsuserd \
105         nisdomain \
106         ${_nscd} \
107         nsswitch \
108         ntpd \
109         ntpdate \
110         ${_opensm} \
111         othermta \
112         pf \
113         pflog \
114         pfsync \
115         postrandom \
116         powerd \
117         power_profile \
118         ppp \
119         pppoed \
120         pwcheck \
121         quota \
122         random \
123         rarpd \
124         rctl \
125         resolv \
126         rfcomm_pppd_server \
127         root \
128         route6d \
129         routed \
130         routing \
131         rpcbind \
132         rtadvd \
133         rtsold \
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_CASPER} != "no"
177 _casperd=       casperd
178 .endif
179
180 .if ${MK_NS_CACHING} != "no"
181 _nscd=          nscd
182 .endif
183
184 .if ${MK_OFED} != "no"
185 _opensm=        opensm
186 .endif
187
188 .if ${MK_OPENSSL} != "no"
189 FILES+=         keyserv
190 .endif
191
192 .if ${MK_OPENSSH} != "no"
193 _sshd=          sshd
194 .endif
195
196 .if ${MK_PF} != "no"
197 FILES+=         ftp-proxy
198 .endif
199
200 .if ${MK_RCMDS} != "no"
201 FILES+=         rwho
202 .endif
203
204 .if ${MK_UNBOUND} != "no"
205 _unbound=       local_unbound
206 .endif
207
208 .if ${MK_UTMPX} != "no"
209 _utx=           utx
210 .endif
211
212 FILESDIR=       /etc/rc.d
213 FILESMODE=      ${BINMODE}
214
215 .include <bsd.prog.mk>