Makefile revision 1.114
1# $NetBSD: Makefile,v 1.114 2022/05/28 11:17:35 nia 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 16CONFIGFILES=\ 17 CRITLOCALMOUNTED 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 entropy 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 lvmlockdir local lpd lvm \ 31 makemandb mdnsd mixerctl modules mopd motd mountall \ 32 mountcritlocal mountcritremote mountd moused \ 33 named ndbootd network newsyslog nfsd nfslocking npf npf_boot \ 34 npfd \ 35 perusertmp pf pf_boot pflogd postfix powerd ppp pwcheck \ 36 quota \ 37 racoon rpcbind raidframe raidframeparity random_seed rarpd \ 38 rbootd resize_root rndctl root route6d routed rtadvd \ 39 rtclocaltime rwho \ 40 savecore screenblank securelevel smtoff sshd \ 41 staticroute swap1 swap2 sysctl sysdb syslogd \ 42 timed tpctl ttys \ 43 veriexec virecover wdogctl wpa_supplicant wscons wsmoused 44FILESDIR= /etc/rc.d 45FILESMODE= ${BINMODE} 46 47.if ${MKMROUTING} != "no" 48CONFIGFILES+= mrouted 49.endif 50 51.if ${MKNTP} != "no" 52CONFIGFILES+= ntpd ntpdate 53.endif 54 55.if ${MKYP} != "no" 56CONFIGFILES+= ypbind yppasswdd ypserv 57.endif 58 59.if ${MKX11} != "no" 60CONFIGFILES+= xdm xfs fccache 61FILESBUILD_xdm= yes 62FILESBUILD_xfs= yes 63FILESBUILD_fccache= yes 64 65.SUFFIXES: .in 66.in: 67 ${_MKTARGET_CREATE} 68 ${TOOL_SED} -e 's,@X11ROOTDIR@,${X11ROOTDIR},g' < ${.IMPSRC} > ${.TARGET} 69.endif 70 71.if ${MKZFS} != "no" 72CONFIGFILES+= zfs 73.endif 74 75.include <bsd.prog.mk> 76