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

version 1.19, 2012/04/11 18:27:30 version 1.20, 2012/09/21 07:55:20
Line 132 
Line 132 
     SymTable context;   /* The local variables */      SymTable context;   /* The local variables */
     Location origin;    /* First line number and file name of commands. */      Location origin;    /* First line number and file name of commands. */
     LIST commands;      /* Creation commands */      LIST commands;      /* Creation commands */
     LIST expanded;      /* Expanded commands */  
     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) */
Line 141 
Line 140 
     char *basename;     /* pointer to name stripped of path */      char *basename;     /* pointer to name stripped of path */
     struct GNode_ *next;      struct GNode_ *next;
     char name[1];       /* The target's name */      char name[1];       /* The target's name */
   };
   
   struct command
   {
           Location location;
           char string[1];
 };  };
   
 #define has_been_built(gn) \  #define has_been_built(gn) \

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20