Home | History | Annotate | Line # | Download | only in rc.d
Makefile revision 1.107
      1 # $NetBSD: Makefile,v 1.107 2020/07/22 16:50:41 martin 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 # You can find a script to visualize the dependency graph in
     14 # src/sbin/rcorder.
     15 
     16 CONFIGFILES=\
     17 		DAEMON DISKS LOGIN NETWORKING SERVERS \
     18 		accounting altqd amd apmd automount automountd autounmountd \
     19 		bluetooth bootconf.sh bootparams \
     20 		ccd cgd clearcritlocal cleartmp cron \
     21 		devpubd dhcpcd dhcpd dhcpd6 dhcrelay dmesg \
     22 		downinterfaces \
     23 		envsys \
     24 		fsck fsck_root ftp_proxy ftpd \
     25 		gpio \
     26 		hostapd httpd \
     27 		identd ifwatchd inetd ip6addrctl ipfilter ipfs ipmon ipnat \
     28 		ipsec irdaattach iscsi_target iscsid isibootd \
     29 		kdc \
     30 		ldconfig ldpd llvmlockdir local lpd lvm \
     31 		makemandb mdnsd mixerctl modules mopd motd mountall \
     32 		mountcritlocal MOUNTCRITLOCAL \
     33 		mountcritremote mountd moused mrouted \
     34 		named ndbootd network newsyslog nfsd nfslocking npf npf_boot \
     35 		npfd ntpd ntpdate \
     36 		perusertmp pf pf_boot pflogd postfix powerd ppp pwcheck \
     37 		quota \
     38 		racoon rpcbind raidframe raidframeparity random_seed rarpd \
     39 		rbootd resize_root rndctl root route6d routed rtadvd \
     40 		rtclocaltime rwho \
     41 		savecore screenblank securelevel smtoff sshd \
     42 		staticroute swap1 swap2 sysctl sysdb syslogd \
     43 		timed tpctl ttys \
     44 		veriexec virecover wdogctl wpa_supplicant wscons wsmoused
     45 FILESDIR=	/etc/rc.d
     46 FILESMODE=	${BINMODE}
     47 
     48 .if ${MKYP} != "no"
     49 CONFIGFILES+=	ypbind yppasswdd ypserv
     50 .endif
     51 
     52 .if ${MKX11} != "no"
     53 CONFIGFILES+=	xdm xfs fccache
     54 FILESBUILD_xdm=	yes
     55 FILESBUILD_xfs=	yes
     56 FILESBUILD_fccache= yes
     57 
     58 .SUFFIXES: .in
     59 .in:
     60 	${_MKTARGET_CREATE}
     61 	${TOOL_SED} -e 's,@X11ROOTDIR@,${X11ROOTDIR},g' < ${.IMPSRC} > ${.TARGET}
     62 .endif
     63 
     64 .if ${MKZFS} != "no"
     65 CONFIGFILES+=	zfs
     66 .endif
     67 
     68 .include <bsd.prog.mk>
     69