summaryrefslogtreecommitdiff
path: root/filedef.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-07-22 04:20:14 +0000
committerPaul Smith <psmith@gnu.org>1999-07-22 04:20:14 +0000
commit5a80967f7ef77014d53fbea07558603ea9555442 (patch)
tree24a371fa169122d485250f3ed33f79b733de6f95 /filedef.h
parente8f2bdba434e200ba5c397e6d884ecd88ae021a1 (diff)
downloadmake-5a80967f7ef77014d53fbea07558603ea9555442.tar.gz
* Installed new versions of GLIBC glob library.
* Installed Tim Magill's "graph pruning" performance enhancement. * Update version to 3.77.90 for the release. * Require automake 1.4.
Diffstat (limited to 'filedef.h')
-rw-r--r--filedef.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/filedef.h b/filedef.h
index c96c2e35..425bb048 100644
--- a/filedef.h
+++ b/filedef.h
@@ -92,12 +92,18 @@ struct file
unsigned int ignore_vpath:1;/* Nonzero if we threw out VPATH name. */
unsigned int pat_searched:1;/* Nonzero if we already searched for
pattern-specific variables. */
+ unsigned int considered:1; /* equal to `considered' if file has been
+ considered on current scan of goal chain */
};
/* Number of intermediate files entered. */
extern unsigned int num_intermediates;
+/* Current value for pruning the scan of the goal chain (toggle 0/1). */
+
+extern unsigned int considered;
+
extern struct file *default_goal_file, *suffix_file, *default_file;