Re: addsuffix influence...

2019-03-29 Thread 積丹尼 Dan Jacobson
Hmmm, well on https://www.gnu.org/software/make/manual/html_node/Chained-Rules.html they often say "mentioned in the makefile". They need to say once: "yes, anywhere in the entire makefile, (except within comments.)" ___ Bug-make mailing list Bug-make@g

Re: addsuffix influence...

2019-03-29 Thread Paul Smith
On Fri, 2019-03-29 at 12:55 +0800, 積丹尼 Dan Jacobson wrote: > OK you're right. But why is what is on line A influencing this when we > are trying to make B? > $ cat makefile > D=X_X_X_X > N=noise > L=light > A:$D/$(addsuffix .kmz, $L $N) > B:$D/$L.kmz $D/$N.kmz > %.kmz:%.kml; minizip -o $@ $? > %.km