On 2023-06-07 03:23, Bartłomiej Wójcik wrote:
> Hi,
> The GNU make documentation states:
>
> *define myrule
> target:
> echo built
> endef
>
> $(myrule)
> *
>
> *The above makefile results in the definition of a target ‘target’ with
> prerequisites ‘echo’ and ‘built’, as if the makefile
On Wed, 2023-06-07 at 12:23 +0200, Bartłomiej Wójcik wrote:
> The GNU make documentation states:
>
> *define myrule
> target:
> echo built
> endef
>
> $(myrule)
> *
To be clear, the documentation says that the above will NOT work (as
you intend).
> *The above makefile results in the def