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