Artifact 9fb89ad75371b80de7a3b1fa84a6438238ab242456e6a91bf862a8a23d096d00:
- File Makefile — part of check-in [b8c8da525b] at 2019-10-20 00:45:52 on branch trunk — add more services (user: arcade, size: 349) [annotate] [blame] [check-ins using]
.include "/etc/mrc.conf"
DAEMONIZER?=svc.daemon
.MAKE.JOBS?=2
.SILENT:
.include "${DAEMONIZER}"
.if defined(AUTOBOOT)
SCRIPTS!=ls *.init *.service
.else
SCRIPTS!=ls *.service
DAEMON:
.endif
.MAIN: ${SCRIPTS:S/.init//:S/.service//}
.PHONY: ${SCRIPTS:S/.init//:S/.service//} _daemon _service
.for file in ${SCRIPTS}
.include "${file}"
.endfor