Annotation For Makefile
Logged in as anonymous

Origin for each line in Makefile from check-in f95fc3334e:

2f11a995dc 2019-10-19    1: .include "/etc/mrc.conf"
8f80b79392 2019-10-20    2: .export
5062c9b6fc 2019-10-19    3: 
5062c9b6fc 2019-10-19    4: DAEMONIZER?=svc.daemon
84d4cb5e66 2019-10-19    5: 
8f80b79392 2019-10-20    6: #.MAKE.JOBS?=2
2bf099898d 2019-10-20    7: #.SILENT:
5062c9b6fc 2019-10-19    8: 
5062c9b6fc 2019-10-19    9: .include "${DAEMONIZER}"
5fb1968943 2019-10-19   10: 
5fb1968943 2019-10-19   11: .if defined(AUTOBOOT)
8f80b79392 2019-10-20   12: SCRIPTS=${:!find /etc/mrc -name '*.init' -o -name '*.service'!:S/\/etc\/mrc\///}
f95fc3334e 2019-10-20   13: 
f95fc3334e 2019-10-20   14: .ERROR:
f95fc3334e 2019-10-20   15: 	: ERROR: ABORTING BOOT (sending SIGTERM to parent)!
f95fc3334e 2019-10-20   16: 	: target ${.ERROR_TARGET} failed to execute:
f95fc3334e 2019-10-20   17: 	: ${.ERROR_CMD}
f95fc3334e 2019-10-20   18: 	kill 1
5fb1968943 2019-10-19   19: .else
8f80b79392 2019-10-20   20: SCRIPTS=${:!find /etc/mrc -name '*.service'!:S/\/etc\/mrc\///}
84d4cb5e66 2019-10-19   21: 
84d4cb5e66 2019-10-19   22: DAEMON:
5fb1968943 2019-10-19   23: .endif
5fb1968943 2019-10-19   24: 
f95fc3334e 2019-10-20   25: TARGETS=${SCRIPTS:S/.init//:S/.service//}
f95fc3334e 2019-10-20   26: 
f95fc3334e 2019-10-20   27: .MAIN: ${TARGETS}
84d4cb5e66 2019-10-19   28: 
f95fc3334e 2019-10-20   29: .PHONY: ${TARGETS} _daemon _service
5062c9b6fc 2019-10-19   30: 
5062c9b6fc 2019-10-19   31: .for file in ${SCRIPTS}
5062c9b6fc 2019-10-19   32: .include "${file}"
5062c9b6fc 2019-10-19   33: .endfor