Makefile at [7ccc41d896]
Logged in as anonymous

File Makefile artifact 9fb89ad753 part of check-in 7ccc41d896


.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