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

Diff for /src/usr.bin/make/targ.c between version 1.43 and 1.44

version 1.43, 2007/09/16 14:29:33 version 1.44, 2007/09/16 15:20:48
Line 318 
Line 318 
         }          }
 }  }
   
 /*-  
  *-----------------------------------------------------------------------  
  * Targ_Ignore  --  
  *      Return true if should ignore errors when creating gn  
  *-----------------------------------------------------------------------  
  */  
 bool  bool
 Targ_Ignore(GNode *gn)  Targ_Ignore(GNode *gn)
 {  {
Line 333 
Line 327 
                 return false;                  return false;
 }  }
   
 /*-  
  *-----------------------------------------------------------------------  
  * Targ_Silent  --  
  *      Return true if be silent when creating gn  
  *-----------------------------------------------------------------------  
  */  
 bool  bool
 Targ_Silent(GNode *gn)  Targ_Silent(GNode *gn)
 {  {
Line 348 
Line 336 
                 return false;                  return false;
 }  }
   
 /*-  
  *-----------------------------------------------------------------------  
  * Targ_Precious --  
  *      See if the given target is precious  
  *-----------------------------------------------------------------------  
  */  
 bool  bool
 Targ_Precious(GNode *gn)  Targ_Precious(GNode *gn)
 {  {
Line 444 
Line 426 
         }          }
 }  }
   
 /*-  
  *-----------------------------------------------------------------------  
  * TargPrintNode --  
  *      print the contents of a node  
  *-----------------------------------------------------------------------  
  */  
 static void  static void
 TargPrintNode(GNode *gn, int pass)  TargPrintNode(GNode *gn, int pass)
 {  {
Line 517 
Line 493 
         }          }
 }  }
   
 /*-  
  *-----------------------------------------------------------------------  
  * TargPrintOnlySrc --  
  *      Print targets that are just a source.  
  *-----------------------------------------------------------------------  
  */  
 static void  static void
 TargPrintOnlySrc(GNode *gn)  TargPrintOnlySrc(GNode *gn)
 {  {
Line 531 
Line 501 
                     gn->path != NULL ? gn->path : gn->name);                      gn->path != NULL ? gn->path : gn->name);
 }  }
   
 /*-  
  *-----------------------------------------------------------------------  
  * Targ_PrintGraph --  
  *      print the entire graph.  
  *-----------------------------------------------------------------------  
  */  
 void  void
 Targ_PrintGraph(int pass)       /* Which pass this is. 1 => no processing  Targ_PrintGraph(int pass)       /* Which pass this is. 1 => no processing
                                  * 2 => processing done */                                   * 2 => processing done */

Legend:
Removed from v.1.43  
changed lines
  Added in v.1.44