]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - etc/rc.d/Makefile
MFC r277730:
[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         ppp \
105         pppoed \
106         pwcheck \
107         quota \
108         random \
109         rarpd \
110         rctl \
111         resolv \
112         rfcomm_pppd_server \
113         root \
114         route6d \
115         routed \
116         routing \
117         rpcbind \
118         rtadvd \
119         rtsold \
120         rwho \
121         savecore \
122         sdpd \
123         securelevel \
124         sendmail \
125         serial \
126         sppp \
127         ${_sshd} \
128         statd \
129         static_arp \
130         static_ndp \
131         stf \
132         swap1 \
133         syscons \
134         sysctl \
135         syslogd \
136         timed \
137         tmp \
138         ${_ubthidhci} \
139         ugidfw \
140         var \
141         virecover \
142         watchdogd \
143         ypbind \
144         yppasswdd \
145         ypserv \
146         ypset \
147         ypupdated \
148         ypxfrd \
149         zfs \
150         zvol
151
152 .if ${MK_AMD} != "no"
153 FILES+=         amd
154 .endif
155
156 .if ${MK_ACPI} != "no"
157 FILES+=         power_profile
158 .endif
159
160 .if ${MK_APM} != "no"
161 FILES+= apm
162 FILES+= apmd
163 .endif
164
165 .if ${MK_BSNMP} != "no"
166 FILES+=         bsnmpd
167 .endif
168
169 .if ${MK_IPX} != "no"
170 _ipxrouted=     ipxrouted
171 .endif
172
173 .if ${MK_JAIL} != "no"
174 FILES+=         jail
175 .endif
176
177 .if ${MK_LPR} != "no"
178 FILES+=         lpd
179 .endif
180
181 .if ${MK_OFED} != "no"
182 _opensm=        opensm
183 .endif
184
185 .if ${MK_OPENSSH} != "no"
186 _sshd=          sshd
187 .endif
188
189 .if ${MK_NS_CACHING} != "no"
190 _nscd=          nscd
191 .endif
192
193 .if ${MK_BLUETOOTH} != "no"
194 _bluetooth=     bluetooth
195 _bthidd=        bthidd
196 _hcsecd=        hcsecd
197 _ubthidhci=     ubthidhci
198 .endif
199
200 .if ${MK_WIRELESS} != "no"
201 FILES+=         hostapd
202 FILES+=         wpa_supplicant
203 .endif
204
205 FILESDIR=       /etc/rc.d
206 FILESMODE=      ${BINMODE}
207
208 .include <bsd.prog.mk>