2008-03-05 17:57:11 +05:30
|
|
|
DIR= ${SYSCONFDIR}
|
2011-10-20 07:00:39 +05:30
|
|
|
SRCS= rc.conf.in rc.in rc.shutdown.in
|
|
|
|
BIN= ${BIN-${OS}}
|
|
|
|
CONF= rc.conf ${BIN-${OS}}
|
2007-11-23 17:34:11 +05:30
|
|
|
|
2008-11-03 21:01:01 +05:30
|
|
|
CLEANFILES+= rc.conf
|
|
|
|
|
2008-01-10 22:05:59 +05:30
|
|
|
MK= ../mk
|
2008-03-25 19:36:05 +05:30
|
|
|
include ${MK}/os.mk
|
2011-10-18 06:48:39 +05:30
|
|
|
|
2011-10-20 07:00:39 +05:30
|
|
|
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}}
|
2011-10-18 06:48:39 +05:30
|
|
|
|
2008-01-10 22:05:59 +05:30
|
|
|
include ${MK}/scripts.mk
|
2011-01-06 11:33:43 +05:30
|
|
|
|
2011-03-11 06:54:28 +05:30
|
|
|
# We can't use "ifndef" here because that treats set-but-empty
|
|
|
|
# as not-set which is not what we want
|
|
|
|
MKRCSYS ?= automagicplease
|
2011-10-19 22:52:23 +05:30
|
|
|
ifeq (${MKRCSYS},automagicplease)
|
2011-03-11 06:54:28 +05:30
|
|
|
# If the user isn't picking a default, then have the
|
|
|
|
# config go with runtime automagic detection #357247
|
|
|
|
rc.conf: SED_EXTRA += -e '/^rc_sys=""/s:^:\#:'
|
|
|
|
MKRCSYS =
|
|
|
|
endif
|
2011-01-06 11:33:43 +05:30
|
|
|
rc.conf: rc.conf.in rc.conf.${OS}
|
|
|
|
${SED} ${SED_REPLACE} ${SED_EXTRA} $^ > $@
|