=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/make.h,v retrieving revision 1.18 retrieving revision 1.19 diff -c -r1.18 -r1.19 *** src/usr.bin/make/make.h 2000/04/17 23:54:47 1.18 --- src/usr.bin/make/make.h 2000/06/17 14:38:18 1.19 *************** *** 1,4 **** ! /* $OpenBSD: make.h,v 1.18 2000/04/17 23:54:47 espie Exp $ */ /* $NetBSD: make.h,v 1.15 1997/03/10 21:20:00 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: make.h,v 1.19 2000/06/17 14:38:18 espie Exp $ */ /* $NetBSD: make.h,v 1.15 1997/03/10 21:20:00 christos Exp $ */ /* *************** *** 152,169 **** time_t cmtime; /* The modification time of its youngest * child */ ! Lst iParents; /* Links to parents for which this is an * implied source, if any */ ! Lst cohorts; /* Other nodes for the :: operator */ ! Lst parents; /* Nodes that depend on this one */ ! Lst children; /* Nodes on which this one depends */ ! Lst successors; /* Nodes that must be made after this one */ ! Lst preds; /* Nodes that must be made before this one */ ! Lst context; /* The local variables */ unsigned long lineno; /* First line number of commands. */ const char * fname; /* File name of commands. */ ! Lst commands; /* Creation commands */ struct _Suff *suffix; /* Suffix for the node (determined by * Suff_FindDeps and opaque to everyone --- 152,169 ---- time_t cmtime; /* The modification time of its youngest * child */ ! LIST iParents; /* Links to parents for which this is an * implied source, if any */ ! LIST cohorts; /* Other nodes for the :: operator */ ! LIST parents; /* Nodes that depend on this one */ ! LIST children; /* Nodes on which this one depends */ ! LIST successors; /* Nodes that must be made after this one */ ! LIST preds; /* Nodes that must be made before this one */ ! LIST context; /* The local variables */ unsigned long lineno; /* First line number of commands. */ const char * fname; /* File name of commands. */ ! LIST commands; /* Creation commands */ struct _Suff *suffix; /* Suffix for the node (determined by * Suff_FindDeps and opaque to everyone *************** *** 306,315 **** /* * Global Variables */ ! extern Lst create; /* The list of target names specified on the * command line. used to resolve #if * make(...) statements */ ! extern Lst dirSearchPath; /* The list of directories to search when * looking for targets */ extern Boolean compatMake; /* True if we are make compatible */ --- 306,315 ---- /* * Global Variables */ ! extern LIST create; /* The list of target names specified on the * command line. used to resolve #if * make(...) statements */ ! extern LIST dirSearchPath; /* The list of directories to search when * looking for targets */ extern Boolean compatMake; /* True if we are make compatible */ *************** *** 348,354 **** extern Boolean oldVars; /* Do old-style variable substitution */ ! extern Lst sysIncPath; /* The system include path. */ /* * debug control: --- 348,354 ---- extern Boolean oldVars; /* Do old-style variable substitution */ ! extern LIST sysIncPath; /* The system include path. */ /* * debug control: