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