Changeset 2788 for trunk/src/kmk/file.c


Ignore:
Timestamp:
Sep 6, 2015, 5:43:10 PM (10 years ago)
Author:
bird
Message:

kmk_cc_exec.c: Sketched the basic makefile evaluation 'instructions'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/file.c

    r2741 r2788  
    12171217  if (f->dontcare)
    12181218    puts (_("#  A default, MAKEFILES, or -include/sinclude makefile."));
     1219#if defined (CONFIG_WITH_COMPILER) || defined (CONFIG_WITH_MAKE_STATS)
     1220  if (f->eval_count > 0)
     1221    {
     1222# ifdef CONFIG_WITH_COMPILER
     1223      if (f->evalprog)
     1224        printf (_("#  Makefile evaluated %u times - compiled\n"), f->eval_count);
     1225      else
     1226# endif
     1227        printf (_("#  Makefile evaluated %u times\n"), f->eval_count);
     1228    }
     1229#endif
     1230
    12191231  puts (f->tried_implicit
    12201232        ? _("#  Implicit rule search has been done.")
Note: See TracChangeset for help on using the changeset viewer.