diff options
author | Roland McGrath <roland@redhat.com> | 1994-10-24 22:47:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-10-24 22:47:43 +0000 |
commit | 4b17f0982b74013682b156f28ff7b195202194ea (patch) | |
tree | 1d5e8b026c0462198c24fe45b446914c4d89791e /file.h | |
parent | dc576b205136bd71e95447dcefce3a608d331b01 (diff) | |
download | gunmake-4b17f0982b74013682b156f28ff7b195202194ea.tar.gz |
(struct file): New member `command_flags'.
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -25,7 +25,8 @@ struct file struct file *next; char *name; struct dep *deps; - struct commands *cmds; /* Commands to execute for this target */ + struct commands *cmds; /* Commands to execute for this target. */ + int command_flags; /* Flags OR'd in for cmds; see commands.h. */ char *stem; /* Implicit stem, if an implicit rule has been used */ struct dep *also_make; /* Targets that are made by making this. */ |