tools/llvm: Do not build with symbols
[minix3.git] / etc / defaults / Makefile
blob9fa7717e23bdac5d3375fd6c535885cce58eba28
1 # $NetBSD: Makefile,v 1.6 2013/05/01 05:36:25 agc Exp $
3 .include <bsd.own.mk>
5 .if !defined(__MINIX)
6 CONFIGFILES= daily.conf monthly.conf pkgpath.conf security.conf weekly.conf
7 .else
8 CONFIGFILES= minix.rc.conf
9 .endif # !defined(__MINIX)
10 FILESDIR= /etc/defaults
11 FILESMODE= ${NONBINMODE}
13 # Manage arch-specific rc.conf(5) file
14 CONFIGFILES+= rc_conf
15 FILESNAME_rc_conf= rc.conf
16 FILESBUILD_rc_conf= yes
18 # If present, rc.conf.append is added to the end of the default rc.conf file
19 RCCONF_SRCS= ${.CURDIR}/rc.conf
20 .if exists(../etc.${MACHINE}/rc.conf.append)
21 RCCONF_SRCS+= ${.CURDIR}/../etc.${MACHINE}/rc.conf.append
22 .endif
24 rc_conf: ${RCCONF_SRCS}
25 ${_MKTARGET_CREATE}
26 ${TOOL_CAT} ${RCCONF_SRCS} > ${.TARGET}
28 .include <bsd.prog.mk>