]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - etc/rc.d/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[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         bgfsck \
24         ${_bluetooth} \
25         bootparams \
26         bridge \
27         bsnmpd \
28         ${_bthidd} \
29         ccd \
30         cleanvar \
31         cleartmp \
32         cron \
33         ctld \
34         ddb \
35         defaultroute \
36         devd \
37         devfs \
38         dhclient \
39         dmesg \
40         dumpon \
41         faith \
42         fsck \
43         ftp-proxy \
44         ftpd \
45         gbde \
46         geli \
47         geli2 \
48         gptboot \
49         gssd \
50         hastd \
51         ${_hcsecd} \
52         hostapd \
53         hostid \
54         hostid_save \
55         hostname \
56         inetd \
57         initrandom \
58         ip6addrctl \
59         ipfilter \
60         ipfs \
61         ipfw \
62         ipmon \
63         ipnat \
64         ipsec \
65         ${_ipxrouted} \
66         iscsictl \
67         iscsid \
68         jail \
69         kadmind \
70         kerberos \
71         keyserv \
72         kfd \
73         kld \
74         kldxref \
75         kpasswdd \
76         ldconfig \
77         local \
78         localpkg \
79         lockd \
80         lpd \
81         mixer \
82         motd \
83         mountcritlocal \
84         mountcritremote \
85         mountlate \
86         mdconfig \
87         mdconfig2 \
88         mountd \
89         moused \
90         mroute6d \
91         mrouted \
92         msgs \
93         named \
94         natd \
95         netif \
96         netoptions \
97         netwait \
98         newsyslog \
99         nfsclient \
100         nfscbd \
101         nfsd \
102         nfsuserd \
103         nisdomain \
104         ${_nscd} \
105         nsswitch \
106         ntpd \
107         ntpdate \
108         ${_opensm} \
109         othermta \
110         pf \
111         pflog \
112         pfsync \
113         postrandom \
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         rwho \
133         savecore \
134         sdpd \
135         securelevel \
136         sendmail \
137         serial \
138         sppp \
139         ${_sshd} \
140         statd \
141         static_arp \
142         static_ndp \
143         stf \
144         swap \
145         swaplate \
146         syscons \
147         sysctl \
148         syslogd \
149         timed \
150         tmp \
151         ${_ubthidhci} \
152         ugidfw \
153         ${_unbound} \
154         ${_utx} \
155         var \
156         virecover \
157         watchdogd \
158         wpa_supplicant \
159         ypbind \
160         yppasswdd \
161         ypserv \
162         ypset \
163         ypupdated \
164         ypxfrd \
165         zfs \
166         zvol
167
168 .if ${MK_IPX} != "no"
169 _ipxrouted=     ipxrouted
170 .endif
171
172 .if ${MK_OFED} != "no"
173 _opensm=        opensm
174 .endif
175
176 .if ${MK_OPENSSH} != "no"
177 _sshd=          sshd
178 .endif
179
180 .if ${MK_NS_CACHING} != "no"
181 _nscd=          nscd
182 .endif
183
184 .if ${MK_BLUETOOTH} != "no"
185 _bluetooth=     bluetooth
186 _bthidd=        bthidd
187 _hcsecd=        hcsecd
188 _ubthidhci=     ubthidhci
189 .endif
190
191 .if ${MK_UNBOUND} != "no"
192 _unbound=       local_unbound
193 .endif
194
195 .if ${MK_UTMPX} != "no"
196 _utx=           utx
197 .endif
198
199 FILESDIR=       /etc/rc.d
200 FILESMODE=      ${BINMODE}
201
202 .include <bsd.prog.mk>