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