Lines of
Makefile
from check-in 8f80b79392
that are changed by the sequence of edits moving toward
check-in 2bf099898d:
1: .include "/etc/mrc.conf"
2: .export
3:
4: DAEMONIZER?=svc.daemon
5:
6: #.MAKE.JOBS?=2
8f80b79392 2019-10-20 7: .SILENT:
8:
9: .include "${DAEMONIZER}"
10:
11: .if defined(AUTOBOOT)
12: SCRIPTS=${:!find /etc/mrc -name '*.init' -o -name '*.service'!:S/\/etc\/mrc\///}
13: .else
14: SCRIPTS=${:!find /etc/mrc -name '*.service'!:S/\/etc\/mrc\///}
15:
16: DAEMON:
17: .endif
18:
19: .MAIN: ${SCRIPTS:S/.init//:S/.service//}
20:
21: .PHONY: ${SCRIPTS:S/.init//:S/.service//} _daemon _service
22:
23: .for file in ${SCRIPTS}
24: .include "${file}"
25: .endfor