Makefile at [5062c9b6fc]
Logged in as anonymous

File Makefile artifact ec1a7976b1 part of check-in 5062c9b6fc


.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