bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Bug in make?


From: Paul Smith
Subject: Re: Bug in make?
Date: Tue, 18 Feb 2020 15:11:00 -0500

On Tue, 2020-02-18 at 23:00 +0300, Alexander Khomyak wrote:
> Why "Grouped targets recipe"in the following Makefile
> 
> targets = target1 target2
> 
> all : $(targets)
> 
> $(targets) &:
>     @echo "Grouped targets recipe"
>     @echo $@ > target1
>     @echo $@ > target2
> 
> clean :
>     rm -rf $(targets)
> 
> 
> runs one time using command 'make' and two times using command 'make
> -j2'?

What version of GNU make are you using?

Grouped targets are a new feature in GNU make 4.3 so if you don't have
that version, this won't work as you expect.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]