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

Diff for /src/usr.bin/make/make.h between version 1.15 and 1.16

version 1.15, 1999/11/11 11:47:27 version 1.16, 1999/12/18 21:53:32
Line 169 
Line 169 
 /*  /*
  * Manifest constants   * Manifest constants
  */   */
 #define NILGNODE        ((GNode *) NIL)  
   
 /*  /*
  * The OP_ constants are used when parsing a dependency line as a way of   * The OP_ constants are used when parsing a dependency line as a way of
Line 238 
Line 237 
  * do if the desired node(s) is (are) not found. If the TARG_CREATE constant   * do if the desired node(s) is (are) not found. If the TARG_CREATE constant
  * is given, a new, empty node will be created for the target, placed in the   * is given, a new, empty node will be created for the target, placed in the
  * table of all targets and its address returned. If TARG_NOCREATE is given,   * table of all targets and its address returned. If TARG_NOCREATE is given,
  * a NIL pointer will be returned.   * a NULL pointer will be returned.
  */   */
 #define TARG_CREATE     0x01      /* create node if not found */  #define TARG_CREATE     0x01      /* create node if not found */
 #define TARG_NOCREATE   0x00      /* don't create it */  #define TARG_NOCREATE   0x00      /* don't create it */

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16