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