Let's say I have this:
FILES = c:/file.c c:/another_file.c
and I want to do something to each of the files. For example, I'd like to apply cygpath
to each of the files. How can I do that? I would like a solution based on an external program, instead of a built-in make
function please.