Home | History | Annotate | Line # | Download | only in defaults
      1  1.7  sevan #	$NetBSD: Makefile,v 1.7 2019/04/10 00:32:15 sevan Exp $
      2  1.1  lukem 
      3  1.4    jym .include <bsd.own.mk>
      4  1.4    jym 
      5  1.7  sevan CONFIGFILES=	daily.conf monthly.conf npf.boot.conf pkgpath.conf \
      6  1.7  sevan 		    security.conf weekly.conf
      7  1.1  lukem FILESDIR=	/etc/defaults
      8  1.1  lukem FILESMODE=	${NONBINMODE}
      9  1.1  lukem 
     10  1.4    jym # Manage arch-specific rc.conf(5) file
     11  1.4    jym CONFIGFILES+=	rc_conf
     12  1.4    jym FILESNAME_rc_conf=	rc.conf
     13  1.4    jym FILESBUILD_rc_conf=	yes
     14  1.4    jym 
     15  1.5    jym # If present, rc.conf.append is added to the end of the default rc.conf file
     16  1.4    jym RCCONF_SRCS=	${.CURDIR}/rc.conf
     17  1.5    jym .if exists(../etc.${MACHINE}/rc.conf.append)
     18  1.5    jym RCCONF_SRCS+=	${.CURDIR}/../etc.${MACHINE}/rc.conf.append
     19  1.4    jym .endif
     20  1.4    jym 
     21  1.4    jym rc_conf: ${RCCONF_SRCS}
     22  1.4    jym 	${_MKTARGET_CREATE}
     23  1.4    jym 	${TOOL_CAT} ${RCCONF_SRCS} > ${.TARGET}
     24  1.4    jym 
     25  1.1  lukem .include <bsd.prog.mk>
     26