Lines of
Makefile
from check-in 2bf099898d
that are changed by the sequence of edits moving toward
check-in f95fc3334e:
1: .include "/etc/mrc.conf"
2: .export
3:
4: DAEMONIZER?=svc.daemon
5:
6: #.MAKE.JOBS?=2
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:
2bf099898d 2019-10-20 19: .MAIN: ${SCRIPTS:S/.init//:S/.service//}
20:
2bf099898d 2019-10-20 21: .PHONY: ${SCRIPTS:S/.init//:S/.service//} _daemon _service
22:
23: .for file in ${SCRIPTS}
24: .include "${file}"
25: .endfor