]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - etc/rc.d/Makefile
MFC r261931,r261932:
[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         natd \
94         netif \
95         netoptions \
96         netwait \
97         newsyslog \
98         nfsclient \
99         nfscbd \
100         nfsd \
101         nfsuserd \
102         nisdomain \
103         ${_nscd} \
104         nsswitch \
105         ntpd \
106         ntpdate \
107         ${_opensm} \
108         othermta \
109         pf \
110         pflog \
111         pfsync \
112         postrandom \
113         powerd \
114         power_profile \
115         ppp \
116         pppoed \
117         pwcheck \
118         quota \
119         random \
120         rarpd \
121         rctl \
122         resolv \
123         rfcomm_pppd_server \
124         root \
125         route6d \
126         routed \
127         routing \
128         rpcbind \
129         rtadvd \
130         rtsold \
131         rwho \
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_IPX} != "no"
168 _ipxrouted=     ipxrouted
169 .endif
170
171 .if ${MK_OFED} != "no"
172 _opensm=        opensm
173 .endif
174
175 .if ${MK_OPENSSH} != "no"
176 _sshd=          sshd
177 .endif
178
179 .if ${MK_NS_CACHING} != "no"
180 _nscd=          nscd
181 .endif
182
183 .if ${MK_BLUETOOTH} != "no"
184 _bluetooth=     bluetooth
185 _bthidd=        bthidd
186 _hcsecd=        hcsecd
187 _ubthidhci=     ubthidhci
188 .endif
189
190 .if ${MK_UNBOUND} != "no"
191 _unbound=       local_unbound
192 .endif
193
194 .if ${MK_UTMPX} != "no"
195 _utx=           utx
196 .endif
197
198 FILESDIR=       /etc/rc.d
199 FILESMODE=      ${BINMODE}
200
201 .include <bsd.prog.mk>