Hi Jim.
On 09/08/2012 03:29 PM, Jim Meyering wrote:
>
> But, ... surprise! So far there is *no* improvement, and in fact a small
> penalty in this very worst case:
>
My wild guess is that the culprit for this might be the Automake-generated
recursive make invocation in the handling of $(BUILT_SOURCES):
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
What happens if, after the first build, you substitute the rule above in
your Makefile with simply:
all: all-am
? Is there any improvement?
Thanks,
Stefano