]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/Makefile
Update libucl to latest version
[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         fsck \
46         ftpd \
47         gbde \
48         geli \
49         geli2 \
50         gptboot \
51         growfs \
52         gssd \
53         hastd \
54         ${_hcsecd} \
55         hostapd \
56         hostid \
57         hostid_save \
58         hostname \
59         inetd \
60         ip6addrctl \
61         ipfilter \
62         ipfs \
63         ipfw \
64         ipmon \
65         ipnat \
66         ipropd_master \
67         ipropd_slave \
68         ipsec \
69         iscsictl \
70         iscsid \
71         jail \
72         ${_kadmind} \
73         ${_kdc} \
74         ${_kfd} \
75         kld \
76         kldxref \
77         ${_kpasswdd} \
78         ldconfig \
79         local \
80         localpkg \
81         lockd \
82         lpd \
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         powerd \
115         power_profile \
116         ppp \
117         pppoed \
118         pwcheck \
119         quota \
120         random \
121         rarpd \
122         rctl \
123         resolv \
124         rfcomm_pppd_server \
125         root \
126         route6d \
127         routed \
128         routing \
129         rpcbind \
130         rtadvd \
131         rtsold \
132         savecore \
133         sdpd \
134         securelevel \
135         sendmail \
136         serial \
137         sppp \
138         ${_sshd} \
139         statd \
140         static_arp \
141         static_ndp \
142         stf \
143         swap \
144         swaplate \
145         syscons \
146         sysctl \
147         syslogd \
148         timed \
149         tmp \
150         ${_ubthidhci} \
151         ugidfw \
152         ${_unbound} \
153         ${_utx} \
154         var \
155         virecover \
156         watchdogd \
157         wpa_supplicant \
158         ypbind \
159         yppasswdd \
160         ypserv \
161         ypset \
162         ypupdated \
163         ypxfrd \
164         zfs \
165         zvol
166
167 .if ${MK_BLUETOOTH} != "no"
168 _bluetooth=     bluetooth
169 _bthidd=        bthidd
170 _hcsecd=        hcsecd
171 _ubthidhci=     ubthidhci
172 .endif
173
174 .if ${MK_CASPER} != "no"
175 _casperd=       casperd
176 .endif
177
178 .if ${MK_NS_CACHING} != "no"
179 _nscd=          nscd
180 .endif
181
182 .if ${MK_KERBEROS} != "no"
183 _kadmind=       kadmind
184 _kdc=           kdc
185 _kfd=           kfd
186 _kpasswdd=      kpasswdd
187 .endif
188
189 .if ${MK_OFED} != "no"
190 _opensm=        opensm
191 .endif
192
193 .if ${MK_OPENSSL} != "no"
194 FILES+=         keyserv
195 .endif
196
197 .if ${MK_OPENSSH} != "no"
198 _sshd=          sshd
199 .endif
200
201 .if ${MK_PF} != "no"
202 FILES+=         ftp-proxy
203 .endif
204
205 .if ${MK_RCMDS} != "no"
206 FILES+=         rwho
207 .endif
208
209 .if ${MK_UNBOUND} != "no"
210 _unbound=       local_unbound
211 .endif
212
213 .if ${MK_UTMPX} != "no"
214 _utx=           utx
215 .endif
216
217 FILESDIR=       /etc/rc.d
218 FILESMODE=      ${BINMODE}
219
220 .include <bsd.prog.mk>