[BACK]Return to gnode.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/gnode.h between version 1.9 and 1.10

version 1.9, 2007/11/10 12:51:40 version 1.10, 2007/11/10 13:59:48
Line 68 
Line 68 
  *         to create this target.   *         to create this target.
  */   */
   
 #define UNMADE          0  #define UNKNOWN         0
 #define BEINGMADE       1  #define BEINGMADE       1
 #define MADE            2  #define MADE            2
 #define UPTODATE        3  #define UPTODATE        3
Line 93 
Line 93 
                          * made */                           * made */
     char built_status;  /* Set to reflect the state of processing      char built_status;  /* Set to reflect the state of processing
                          * on this node:                           * on this node:
                          *  UNMADE - Not examined yet                           *  UNKNOWN - Not examined yet
                          *  BEINGMADE - Target is already being made.                           *  BEINGMADE - Target is currently being made.
                          *      Indicates a cycle in the graph. (compat  
                          *      mode only)  
                          *  MADE - Was out-of-date and has been made                           *  MADE - Was out-of-date and has been made
                          *  UPTODATE - Was already up-to-date                           *  UPTODATE - Was already up-to-date
                          *  ERROR - An error occurred while it was being                           *  ERROR - An error occurred while it was being
                          *      made (used only in compat mode)                           *      made (used only in compat mode)
                          *  ABORTED - The target was aborted due to                           *  ABORTED - The target was aborted due to
                          *      an error making an inferior (compat).                           *      an error making an inferior.
                          *  CYCLE - Marked as potentially being part of                           *  CYCLE - Marked as potentially being part of
                          *      a graph cycle. If we come back to a                           *      a graph cycle. If we come back to a
                          *      node marked this way, it is printed                           *      node marked this way, it is printed

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10