Makefile revision 1.8
11.8Sthorpej# $NetBSD: Makefile,v 1.8 2025/12/22 03:11:05 thorpej Exp $ 21.1Slukem 31.4Sjym.include <bsd.own.mk> 41.4Sjym 51.8SthorpejCONFIGFILES= daily.conf monthly.conf pkgpath.conf \ 61.7Ssevan security.conf weekly.conf 71.8Sthorpej 81.8Sthorpej.if (${MKNPF} != "no") 91.8SthorpejCONFIGFILES+= npf.boot.conf 101.8Sthorpej.endif 111.8Sthorpej 121.1SlukemFILESDIR= /etc/defaults 131.1SlukemFILESMODE= ${NONBINMODE} 141.1Slukem 151.4Sjym# Manage arch-specific rc.conf(5) file 161.4SjymCONFIGFILES+= rc_conf 171.4SjymFILESNAME_rc_conf= rc.conf 181.4SjymFILESBUILD_rc_conf= yes 191.4Sjym 201.5Sjym# If present, rc.conf.append is added to the end of the default rc.conf file 211.4SjymRCCONF_SRCS= ${.CURDIR}/rc.conf 221.5Sjym.if exists(../etc.${MACHINE}/rc.conf.append) 231.5SjymRCCONF_SRCS+= ${.CURDIR}/../etc.${MACHINE}/rc.conf.append 241.4Sjym.endif 251.4Sjym 261.4Sjymrc_conf: ${RCCONF_SRCS} 271.4Sjym ${_MKTARGET_CREATE} 281.4Sjym ${TOOL_CAT} ${RCCONF_SRCS} > ${.TARGET} 291.4Sjym 301.1Slukem.include <bsd.prog.mk> 31