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

Lines Matching refs:cmds

1888   struct commands *cmds;
1899 cmds = (struct commands *) xmalloc (sizeof (struct commands));
1900 cmds->fileinfo.filenm = flocp->filenm;
1901 cmds->fileinfo.lineno = cmds_started;
1902 cmds->commands = savestring (commands, commands_idx);
1903 cmds->command_lines = 0;
1906 cmds = 0;
1960 `targets: target%pattern: dep%pattern; cmds',
1984 /* If CMDS == F->CMDS, this target was listed in this rule
1986 if (cmds != 0 && cmds == f->cmds)
1994 else if (cmds != 0 && f->cmds != 0 && f->is_target)
1996 error (&cmds->fileinfo,
1999 error (&f->cmds->fileinfo,
2006 /* Defining .DEFAULT with no deps or cmds clears it. */
2007 if (f == default_file && this == 0 && cmds == 0)
2008 f->cmds = 0;
2009 if (cmds != 0)
2010 f->cmds = cmds;
2030 if (cmds != 0)
2045 if (f->cmds != 0)
2060 this $< -logic works). I cannot simply rely on file->cmds
2070 if (cmds != 0)
2095 f->cmds = cmds;
2136 create_pattern_rule (targets, target_percents, two_colon, deps, cmds, 1);