Annotation For Makefile
Logged in as anonymous

Lines of Makefile from check-in b8c8da525b that are changed by the sequence of edits moving toward check-in 8f80b79392:

                         1: .include "/etc/mrc.conf"
                         2: 
                         3: DAEMONIZER?=svc.daemon
                         4: 
b8c8da525b 2019-10-20    5: .MAKE.JOBS?=2
                         6: .SILENT:
                         7: 
                         8: .include "${DAEMONIZER}"
                         9: 
                        10: .if defined(AUTOBOOT)
b8c8da525b 2019-10-20   11: SCRIPTS!=ls *.init *.service
                        12: .else
b8c8da525b 2019-10-20   13: SCRIPTS!=ls *.service
                        14: 
                        15: DAEMON:
                        16: .endif
                        17: 
                        18: .MAIN: ${SCRIPTS:S/.init//:S/.service//}
                        19: 
                        20: .PHONY: ${SCRIPTS:S/.init//:S/.service//} _daemon _service
                        21: 
                        22: .for file in ${SCRIPTS}
                        23: .include "${file}"
                        24: .endfor