make: Add more debug output - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit d0c96fd6db74dca3d53aca43116de9597c43944b
 (DIR) parent d66da367d6d4052bdcea205b600c84fa30de2bd2
 (HTM) Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
       Date:   Thu, 20 Mar 2025 10:58:51 +0100
       
       make: Add more debug output
       
       Diffstat:
         M src/cmd/scc-make/rules.c            |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
 (DIR) diff --git a/src/cmd/scc-make/rules.c b/src/cmd/scc-make/rules.c
       @@ -541,6 +541,7 @@ rebuild(Target *tp, int *buildp)
                } else if (need) {
                        *buildp = 1;
        
       +                debug("target %s needs updating", tp->name);
                        r = update(tp);
                        if (r == 0)
                                return 0;