Lines of Makefile from check-in 5062c9b6fc that are changed by the sequence of edits moving toward check-in 84d4cb5e66:
1: .include "/etc/mrc.conf"
2:
3: DAEMONIZER?=svc.daemon
4:
5: .include "${DAEMONIZER}"
6:
7: .if defined(AUTOBOOT)
8: SCRIPTS!=ls *.init *.service
9: .else
10: SCRIPTS!=ls *.service
11: .endif
12:
5062c9b6fc 2019-10-19 13: all: ${SERVICE:S/.init//:S/.service//}
14:
15: .for file in ${SCRIPTS}
16: .include "${file}"
17: .endfor