Before now, /etc/rc.conf was created by the build system from multiple rc.conf.* file fragments and there was no reason for this.
		
			
				
	
	
		
			24 lines
		
	
	
		
			431 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			431 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
DIR=	${SYSCONFDIR}
 | 
						|
SRCS=	rc.in rc.shutdown.in
 | 
						|
BIN=	${BIN-${OS}}
 | 
						|
CONF=	rc.conf ${BIN-${OS}}
 | 
						|
 | 
						|
MK=	../mk
 | 
						|
include ${MK}/os.mk
 | 
						|
 | 
						|
SED_EXTRA-FreeBSD=	-e 's:@TERM@:cons25:g'
 | 
						|
BIN-FreeBSD=		rc rc.shutdown rc.devd
 | 
						|
CONF-FreeBSD=		devd.conf
 | 
						|
 | 
						|
SED_EXTRA-Linux=	-e 's:@TERM@:wsvt25:g'
 | 
						|
BIN-Linux=
 | 
						|
CONF-Linux=
 | 
						|
 | 
						|
SED_EXTRA-NetBSD=	-e 's:@TERM@:wsvt25:g'
 | 
						|
BIN-NetBSD=		rc rc.shutdown
 | 
						|
CONF-NetBSD=
 | 
						|
 | 
						|
SED_EXTRA=	${SED_EXTRA-${OS}}
 | 
						|
 | 
						|
include ${MK}/scripts.mk
 |