xref: /netbsd-src/etc/rc.d/Makefile (revision 274254cdae52594c1aa480a736aef78313d15c9c)
1# $NetBSD: Makefile,v 1.75 2009/01/16 01:59:23 haad Exp $
2
3.include <bsd.own.mk>
4
5#
6# NOTE:
7#
8# If you're adding new scripts, don't forget to update following:
9#	src/distrib/sets/lists/etc/mi
10#	src/etc/mtree/special
11#	src/usr.sbin/postinstall/postinstall
12#
13
14CONFIGFILES=\
15		DAEMON LOGIN NETWORKING SERVERS \
16		accounting altqd amd apmd \
17		bootconf.sh bootparams btattach btconfig btdevctl bthcid \
18		ccd cgd cleartmp cron \
19		dhclient dhcpd dhcrelay dmesg downinterfaces envsys \
20		fsck ftp_proxy ftpd \
21		hostapd httpd \
22		identd ifwatchd inetd ipfilter ipfs ipmon ipnat ipsec \
23		irdaattach iscsi_target isdnd \
24		kdc \
25		ldconfig local lpd lvm\
26		mixerctl mopd motd mountall mountcritlocal mountcritremote \
27		mountd moused mrouted \
28		named ndbootd network newsyslog nfsd nfslocking ntpd ntpdate \
29		perusertmp pf pf_boot pflogd postfix powerd ppp pwcheck \
30		quota \
31		racoon rpcbind raidframe raidframeparity rarpd rbootd rndctl \
32		root route6d routed rtadvd rtclocaltime rtsold rwho \
33		savecore screenblank sdpd securelevel sshd \
34		staticroute swap1 swap2 sysctl sysdb syslogd \
35		timed tpctl ttys \
36		veriexec virecover wdogctl wpa_supplicant wscons wsmoused \
37		ypbind yppasswdd ypserv
38FILESDIR=	/etc/rc.d
39FILESMODE=	${BINMODE}
40
41.if ${MKX11} != "no"
42CONFIGFILES+=	xdm xfs
43FILESBUILD_xdm=	yes
44FILESBUILD_xfs=	yes
45
46.SUFFIXES: .in
47.in:
48	${_MKTARGET_CREATE}
49	${TOOL_SED} -e 's,@X11ROOTDIR@,${X11ROOTDIR},g' < ${.IMPSRC} > ${.TARGET}
50.endif
51
52.include <bsd.prog.mk>
53