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