Artifact ec1a7976b1a5fb6310c96608372d09825ce1650b4a9bc62bf84e6e484ab91226:
- File Makefile — part of check-in [5062c9b6fc] at 2019-10-19 22:52:48 on branch trunk — add more services and init targets add daemonizer (user: arcade, size: 254) [annotate] [blame] [check-ins using]
.include "/etc/mrc.conf"
DAEMONIZER?=svc.daemon
.include "${DAEMONIZER}"
.if defined(AUTOBOOT)
SCRIPTS!=ls *.init *.service
.else
SCRIPTS!=ls *.service
.endif
all: ${SERVICE:S/.init//:S/.service//}
.for file in ${SCRIPTS}
.include "${file}"
.endfor