Starting fresh thread instead of continuing the bug 41813 discussion.
On 03/20/2014 11:32 PM, John E. Malmberg wrote:
Another question is how much of the Unix environment should be simulated
when running Gnu make from DCL?
In my local copy of the sources, I changed the ECHO variable defined
Hi,
Makefile allows to create pattern rule with multiple targets, like
below. This is very handy for rules which generates multiple files at
once.
%.h %.c : %.idl
touch $(<:%.idl=%.c) $(<:%.idl=%.h)
I tried to build static pattern rule in similar way, but it do not
work - make rep