How much Unix should be simulated with GNU Make on VMS?

2014-03-26 Thread John E. Malmberg
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

Static pattern rules do not support multiple targets

2014-03-26 Thread daniel
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