Re: Bug in make?

2020-02-18 Thread Paul Smith
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 -r

Bug in make?

2020-02-18 Thread Alexander Khomyak
Hello, 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 '