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