> Calling funcmktexdep macro returns the text of the macro definition, 
> rather than executing the definition. To execute that text $(eval text) 
> is needed.
> 
> Try this:
> 
> %.pdf : $$(eval $$(call funcmktexdep,$$(subst pdf,tex,$$@)))
> 
> -- 
> Max

I see, since funcmktexdep just return a bunch of shell command, turns out that

%.pdf : $$(shell $$(call funcmktexdep,$$(subst pdf,tex,$$@)))

works

--MZ


      


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to