diff options
author | Roland McGrath <roland@redhat.com> | 1994-04-05 09:22:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-04-05 09:22:13 +0000 |
commit | dc8983dc8b34391b2a41ac1f1bbc5b65528c6390 (patch) | |
tree | 06b87f75cf94506ef888b8a50049c97df4cea2fe | |
parent | 0513e295932e4e2cc0f116eb9f2d254ca8568245 (diff) | |
download | gunmake-dc8983dc8b34391b2a41ac1f1bbc5b65528c6390.tar.gz |
(struct file): Change member `double_colon' from flag to `struct file *'.
-rw-r--r-- | file.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* Definition of target file data structures for GNU Make. -Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc. +Copyright (C) 1988, 89, 90, 91, 92, 93, 94 Free Software Foundation, Inc. This file is part of GNU Make. GNU Make is free software; you can redistribute it and/or modify @@ -45,6 +45,10 @@ struct file or nil if there isn't one. */ struct file *parent; + /* For a double-colon entry, this is the first double-colon entry for + the same file. Otherwise this is null. */ + struct file *double_colon; + short int update_status; /* Status of the last attempt to update, or -1 if none has been made. */ @@ -56,7 +60,6 @@ struct file cs_finished /* Commands finished. */ } command_state ENUM_BITFIELD (2); - unsigned int double_colon:1;/* Nonzero for double-colon entry */ unsigned int precious:1; /* Non-0 means don't delete file on quit */ unsigned int tried_implicit:1; /* Nonzero if have searched for implicit rule for making |