Home | History | Annotate | Line # | Download | only in rc.d
Makefile revision 1.78
      1  1.78      roy # $NetBSD: Makefile,v 1.78 2009/04/28 23:30:34 roy Exp $
      2  1.11  thorpej 
      3  1.11  thorpej .include <bsd.own.mk>
      4  1.31     yamt 
      5  1.74    lukem #
      6  1.74    lukem # NOTE:
      7  1.74    lukem #
      8  1.74    lukem # If you're adding new scripts, don't forget to update following:
      9  1.50    lukem #	src/distrib/sets/lists/etc/mi
     10  1.37     yamt #	src/etc/mtree/special
     11  1.50    lukem #	src/usr.sbin/postinstall/postinstall
     12  1.74    lukem #
     13  1.76    joerg # You can find a script to visualize the dependency graph in
     14  1.76    joerg # src/sbin/rcorder.
     15   1.1    lukem 
     16  1.48    lukem CONFIGFILES=\
     17  1.77    joerg 		DAEMON DISKS LOGIN NETWORKING SERVERS \
     18  1.55   simonb 		accounting altqd amd apmd \
     19  1.67   plunky 		bootconf.sh bootparams btattach btconfig btdevctl bthcid \
     20  1.55   simonb 		ccd cgd cleartmp cron \
     21  1.78      roy 		dhclient dhcpcd dhcpd dhcrelay dmesg downinterfaces envsys \
     22  1.77    joerg 		fsck fsck_root ftp_proxy ftpd \
     23  1.71   mishka 		hostapd httpd \
     24  1.60   dyoung 		identd ifwatchd inetd ipfilter ipfs ipmon ipnat ipsec \
     25  1.55   simonb 		irdaattach iscsi_target isdnd \
     26  1.55   simonb 		kdc \
     27  1.75     haad 		ldconfig local lpd lvm\
     28  1.55   simonb 		mixerctl mopd motd mountall mountcritlocal mountcritremote \
     29  1.55   simonb 		mountd moused mrouted \
     30  1.55   simonb 		named ndbootd network newsyslog nfsd nfslocking ntpd ntpdate \
     31  1.72    isaki 		perusertmp pf pf_boot pflogd postfix powerd ppp pwcheck \
     32  1.55   simonb 		quota \
     33  1.73      apb 		racoon rpcbind raidframe raidframeparity rarpd rbootd rndctl \
     34  1.73      apb 		root route6d routed rtadvd rtclocaltime rtsold rwho \
     35  1.57  gdamore 		savecore screenblank sdpd securelevel sshd \
     36  1.55   simonb 		staticroute swap1 swap2 sysctl sysdb syslogd \
     37  1.55   simonb 		timed tpctl ttys \
     38  1.62   rpaulo 		veriexec virecover wdogctl wpa_supplicant wscons wsmoused \
     39  1.55   simonb 		ypbind yppasswdd ypserv
     40   1.1    lukem FILESDIR=	/etc/rc.d
     41   1.1    lukem FILESMODE=	${BINMODE}
     42   1.1    lukem 
     43  1.70     cube .if ${MKX11} != "no"
     44  1.70     cube CONFIGFILES+=	xdm xfs
     45  1.70     cube FILESBUILD_xdm=	yes
     46  1.70     cube FILESBUILD_xfs=	yes
     47  1.70     cube 
     48  1.70     cube .SUFFIXES: .in
     49  1.70     cube .in:
     50  1.70     cube 	${_MKTARGET_CREATE}
     51  1.70     cube 	${TOOL_SED} -e 's,@X11ROOTDIR@,${X11ROOTDIR},g' < ${.IMPSRC} > ${.TARGET}
     52  1.70     cube .endif
     53  1.70     cube 
     54   1.1    lukem .include <bsd.prog.mk>
     55