[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.7 and 1.8

version 1.7, 1996/11/30 21:09:00 version 1.8, 1997/04/01 07:28:19
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
 /*      $NetBSD: make.h,v 1.11 1996/11/06 17:59:17 christos Exp $       */  /*      $NetBSD: make.h,v 1.15 1997/03/10 21:20:00 christos Exp $       */
   
 /*  /*
  * Copyright (c) 1988, 1989, 1990, 1993   * Copyright (c) 1988, 1989, 1990, 1993
Line 50 
Line 50 
 #define _MAKE_H_  #define _MAKE_H_
   
 #include <sys/types.h>  #include <sys/types.h>
   #include <sys/param.h>
 #include <stdio.h>  #include <stdio.h>
 #include <string.h>  #include <string.h>
 #include <ctype.h>  #include <ctype.h>
 #if !defined(MAKE_BOOTSTRAP) && defined(BSD)  
 #include <sys/cdefs.h>  #if !defined(MAKE_BOOTSTRAP) && defined(BSD4_4)
   # include <sys/cdefs.h>
 #else  #else
 #ifndef __P  # ifndef __P
 #if defined(__STDC__) || defined(__cplusplus)  #  if defined(__STDC__) || defined(__cplusplus)
 #define __P(protos)     protos          /* full-blown ANSI C */  #   define      __P(protos)     protos          /* full-blown ANSI C */
 #else  #  else
 #define __P(protos)     ()              /* traditional C preprocessor */  #   define      __P(protos)     ()              /* traditional C preprocessor */
   #  endif
   # endif
   # ifndef const
   #  define const
   # endif
   # ifndef volatile
   #  define volatile
   # endif
 #endif  #endif
 #endif  
 #endif  
 #if __STDC__  #if __STDC__
 #include <stdlib.h>  #include <stdlib.h>
 #include <unistd.h>  #include <unistd.h>
Line 103 
Line 112 
  */   */
 typedef struct GNode {  typedef struct GNode {
     char            *name;      /* The target's name */      char            *name;      /* The target's name */
       char            *uname;     /* The unexpanded name of a .USE node */
     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 203 
                                      * state of the -n or -t flags */                                       * state of the -n or -t flags */
 #define OP_JOIN         0x00000400  /* Target is out-of-date only if any of its  #define OP_JOIN         0x00000400  /* Target is out-of-date only if any of its
                                      * children was out-of-date */                                       * children was out-of-date */
   #define OP_MADE         0x00000800  /* Assume the node is already made; even if
                                        * it really is out of date */
 #define OP_INVISIBLE    0x00004000  /* The node is invisible to its parents.  #define OP_INVISIBLE    0x00004000  /* The node is invisible to its parents.
                                      * I.e. it doesn't show up in the parents's                                       * I.e. it doesn't show up in the parents's
                                      * local variables. */                                       * local variables. */
Line 366 
Line 378 
   
 int Make_TimeStamp __P((GNode *, GNode *));  int Make_TimeStamp __P((GNode *, GNode *));
 Boolean Make_OODate __P((GNode *));  Boolean Make_OODate __P((GNode *));
   Lst Make_ExpandUse __P((Lst));
 int Make_HandleUse __P((GNode *, GNode *));  int Make_HandleUse __P((GNode *, GNode *));
 void Make_Update __P((GNode *));  void Make_Update __P((GNode *));
 void Make_DoAllVar __P((GNode *));  void Make_DoAllVar __P((GNode *));

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8