[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.19 and 1.20

version 1.19, 2000/06/17 14:38:18 version 1.20, 2000/06/17 14:40:29
Line 236 
Line 236 
 #define OP_NOTARGET (OP_NOTMAIN|OP_USE|OP_EXEC|OP_TRANSFORM)  #define OP_NOTARGET (OP_NOTMAIN|OP_USE|OP_EXEC|OP_TRANSFORM)
   
 /*  /*
  * The TARG_ constants are used when calling the Targ_FindNode and   * The TARG_ constants are used when calling the Targ_FindNode function in
  * Targ_FindList functions in targ.c. They simply tell the functions what to   * targ.c. They simply tell the function what to do if the desired node(s)
  * do if the desired node(s) is (are) not found. If the TARG_CREATE constant   * is (are) not found.
  * is given, a new, empty node will be created for the target, placed in the   * If the TARG_CREATE constant is given, a new, empty node will be created
  * table of all targets and its address returned. If TARG_NOCREATE is given,   * for the target, placed in the table of all targets and its address returned.
  * a NULL pointer will be returned.   * If TARG_NOCREATE is given, 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.19  
changed lines
  Added in v.1.20