Home | History | Annotate | Download | only in make-3.81

Lines Matching defs:commands

1 /* Definition of data structures describing shell commands for GNU Make.
19 /* Structure that gives the commands to make a file
20 and information about where these commands came from. */
22 struct commands
24 struct floc fileinfo; /* Where commands were defined. */
25 char *commands; /* Commands text. */
27 char **command_lines; /* Commands chopped up into lines. */
39 extern void print_commands PARAMS ((struct commands *cmds));
41 extern void chop_commands PARAMS ((struct commands *cmds));