Home | History | Annotate | Download | only in dist

Lines Matching defs:filenames

134 static void record_files PARAMS ((struct nameseq *filenames, char *pattern, char *pattern_percent,
138 static void record_target_var PARAMS ((struct nameseq *filenames, char *defn,
468 struct nameseq *filenames = 0;
479 if (filenames != 0) \
482 record_files (filenames, pattern, pattern_percent, deps, \
486 filenames = 0; \
499 The strategy is to accumulate target names in FILENAMES, dependencies
545 if (filenames != 0)
804 /* If no filenames, it's a no-op. */
1005 filenames = multi_glob (parse_file_seq (&p2, '\0',
1011 if (!filenames)
1076 record_target_var (filenames, p, v_origin, exported, fstart);
1077 filenames = 0;
1221 struct nameseq *t = filenames;
1759 /* Record target-specific variable values for files FILENAMES.
1762 The links of FILENAMES are freed, and so are any names in it
1769 record_target_var (struct nameseq *filenames, char *defn,
1781 for (; filenames != 0; filenames = nextf)
1784 register char *name = filenames->name;
1789 nextf = filenames->next;
1790 free ((char *) filenames);
1867 /* Record a description line for files FILENAMES,
1875 The links of FILENAMES are freed, and so are any names in it
1879 record_files (struct nameseq *filenames, char *pattern, char *pattern_percent,
1908 for (; filenames != 0; filenames = nextf)
1910 char *name = filenames->name;
1915 nextf = filenames->next;
1916 free (filenames);
1966 /* If there are multiple filenames, copy the chain DEPS for all but
2251 /* Parse a string into a sequence of filenames represented as a
2347 /* VMS filenames can have a ':' in them but they have to be '\'ed but we need
3020 /* Given a chain of struct nameseq's describing a sequence of filenames,
3022 result of globbing the filenames. The new chain is in forward order.