From: Roland McGrath Date: Mon, 24 Oct 1994 22:47:43 +0000 (+0000) Subject: (struct file): New member `command_flags'. X-Git-Tag: 3.71.5~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4b17f0982b74013682b156f28ff7b195202194ea;p=thirdparty%2Fmake.git (struct file): New member `command_flags'. --- diff --git a/file.h b/file.h index 160bf4f8..5889474a 100644 --- a/file.h +++ b/file.h @@ -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. */