summaryrefslogtreecommitdiff
path: root/remake.c
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@kolpackov.net>2004-09-28 18:13:55 +0000
committerBoris Kolpackov <boris@kolpackov.net>2004-09-28 18:13:55 +0000
commitfb6410f43583a9e0b457d675e1bc2d1ed5ba279b (patch)
tree9fe0b1ee1ec8a39a284cc418b1b64bc748d8b4d5 /remake.c
parent341312cc57eba0a1888b3dc89510894e3e7e42c9 (diff)
downloadgunmake-fb6410f43583a9e0b457d675e1bc2d1ed5ba279b.tar.gz
Implemented dontcare flag inheritance when rebuilding makefiles.
Diffstat (limited to 'remake.c')
-rw-r--r--remake.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/remake.c b/remake.c
index b0c76dc..70acad3 100644
--- a/remake.c
+++ b/remake.c
@@ -468,6 +468,7 @@ update_file_1 (struct file *file, unsigned int depth)
{
FILE_TIMESTAMP mtime;
int maybe_make;
+ int dontcare = 0;
check_renamed (d->file);
@@ -491,7 +492,21 @@ update_file_1 (struct file *file, unsigned int depth)
d->file->parent = file;
maybe_make = must_make;
+
+ /* Inherit dontcare flag from our parent. */
+ if (rebuilding_makefiles)
+ {
+ dontcare = d->file->dontcare;
+ d->file->dontcare = file->dontcare;
+ }
+
+
dep_status |= check_dep (d->file, depth, this_mtime, &maybe_make);
+
+ /* Restore original dontcare flag. */
+ if (rebuilding_makefiles)
+ d->file->dontcare = dontcare;
+
if (! d->ignore_mtime)
must_make = maybe_make;
@@ -528,10 +543,26 @@ update_file_1 (struct file *file, unsigned int depth)
for (d = file->deps; d != 0; d = d->next)
if (d->file->intermediate)
{
+ int dontcare = 0;
+
FILE_TIMESTAMP mtime = file_mtime (d->file);
check_renamed (d->file);
d->file->parent = file;
+
+ /* Inherit dontcare flag from our parent. */
+ if (rebuilding_makefiles)
+ {
+ dontcare = d->file->dontcare;
+ d->file->dontcare = file->dontcare;
+ }
+
+
dep_status |= update_file (d->file, depth);
+
+ /* Restore original dontcare flag. */
+ if (rebuilding_makefiles)
+ d->file->dontcare = dontcare;
+
check_renamed (d->file);
{