Lines Matching refs:infiles
373 def make_file(self, infiles, outfile, func, args,
379 files listed in 'infiles'. If the command defined 'self.force',
386 # Allow 'infiles' to be a single string
387 if isinstance(infiles, str):
388 infiles = (infiles,)
389 elif not isinstance(infiles, (list, tuple)):
391 "'infiles' must be a string, or a list or tuple of strings")
394 exec_msg = "generating %s from %s" % (outfile, ', '.join(infiles))
399 if self.force or dep_util.newer_group(infiles, outfile):