Home | History | Annotate | Line # | Download | only in defaults
Makefile revision 1.4
      1 #	$NetBSD: Makefile,v 1.4 2011/08/22 18:54:06 jym Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 CONFIGFILES=	daily.conf monthly.conf security.conf weekly.conf
      6 FILESDIR=	/etc/defaults
      7 FILESMODE=	${NONBINMODE}
      8 
      9 # Manage arch-specific rc.conf(5) file
     10 CONFIGFILES+=	rc_conf
     11 FILESNAME_rc_conf=	rc.conf
     12 FILESBUILD_rc_conf=	yes
     13 
     14 RCCONF_SRCS=	${.CURDIR}/rc.conf
     15 .if exists(../etc.${MACHINE}/rc.conf)
     16 RCCONF_SRCS+=	${.CURDIR}/../etc.${MACHINE}/rc.conf
     17 .endif
     18 
     19 rc_conf: ${RCCONF_SRCS}
     20 	${_MKTARGET_CREATE}
     21 	${TOOL_CAT} ${RCCONF_SRCS} > ${.TARGET}
     22 
     23 .include <bsd.prog.mk>
     24