summaryrefslogtreecommitdiff
path: root/dep.h
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2002-07-08 13:05:02 +0000
committerPaul Smith <psmith@gnu.org>2002-07-08 13:05:02 +0000
commit724925be2b9a48f7911ee6baa315b872bd86995c (patch)
treecc19b7c671850891cdc4ebde9d33dd897de3a1d2 /dep.h
parent2f20fc1cc71e0b59e2cd859e927fea6115a30f76 (diff)
downloadgunmake-724925be2b9a48f7911ee6baa315b872bd86995c.tar.gz
Various cleanups reported by people using the alpha release.
Incorporate "order-only" prerequisites patch. Wrote a test for it. The test shows what might be a bug in the code; I need to look at it more closely (anyway it doesn't behave as I expected). Also I haven't done the docs yet.
Diffstat (limited to 'dep.h')
-rw-r--r--dep.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dep.h b/dep.h
index e649921..7f4380b 100644
--- a/dep.h
+++ b/dep.h
@@ -38,7 +38,8 @@ struct dep
struct dep *next;
char *name;
struct file *file;
- int changed;
+ unsigned int changed : 8;
+ unsigned int ignore_mtime : 1;
};