[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.25 and 1.26

version 1.25, 2000/09/14 13:32:07 version 1.26, 2000/09/14 13:40:03
Line 139 
Line 139 
  *      17) a Lst of strings that are commands to be given to a shell   *      17) a Lst of strings that are commands to be given to a shell
  *         to create this target.   *         to create this target.
  */   */
 typedef struct GNode {  typedef struct GNode_ {
     char            *name;      /* The target's name */  
     char            *path;      /* The full pathname of the file */      char            *path;      /* The full pathname of the file */
     int             type;       /* Its type (see the OP flags, below) */      int             type;       /* Its type (see the OP flags, below) */
     int             order;      /* Its wait weight */      int             order;      /* Its wait weight */
Line 193 
Line 192 
     struct _Suff    *suffix;    /* Suffix for the node (determined by      struct _Suff    *suffix;    /* Suffix for the node (determined by
                                  * Suff_FindDeps and opaque to everyone                                   * Suff_FindDeps and opaque to everyone
                                  * but the Suff module) */                                   * but the Suff module) */
       char      name[1];          /* The target's name */
 } GNode;  } GNode;
   
 /*  /*

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26