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