Annotation For Makefile
Logged in as anonymous

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

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