Graham Menhennitt wrote:
In a Makefile in a subdirectory of our top level directory, I have some
rules:
outfile: infile
cmd< infile> outfile
anotherFile: outfile
Have you considered newlines and tabs set correctly?
It should look like this:
outfile: infile
cmd < infile > outfile
(where the spaces before cmd must be a tab char!)
No blank line between the first and the second line.
Regards,
Graham
Best regards,
Erik
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make