[bug #42125] Static pattern rules do not support multiple targets
URL: <http://savannah.gnu.org/bugs/?42125> Summary: Static pattern rules do not support multiple targets Project: make Submitted by: None Submitted on: Tue 15 Apr 2014 04:02:29 PM UTC Severity: 3 -
Static pattern rules do not support multiple targets
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