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