Re: Problems with vpath directive in v3.81 (w/ minimal example)

2007-07-06 Thread Paul Smith
On Sat, 2007-07-07 at 00:43 +0200, Martin Willers wrote: > Well, since nobody answered my posting from a few days ago, I digged a little > deeper into this issue and was able to create minimal example Makefiles. > This is with make v3.81 on GNU Linux: > And now: If I remove the line with "vpath

Problems with vpath directive in v3.81 (w/ minimal example)

2007-07-06 Thread Martin Willers
Hi! Well, since nobody answered my posting from a few days ago, I digged a little deeper into this issue and was able to create minimal example Makefiles. This is with make v3.81 on GNU Linux: $ make -v GNU Make 3.81 Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see t

Re: Order of linking libraries

2007-07-06 Thread Eli Zaretskii
> Date: Thu, 5 Jul 2007 20:54:46 +0530 > From: "Satish S" <[EMAIL PROTECTED]> > > When i try to create an exec linking with multiple libraries, does the > order in which i link matter, if there are dependencies across the libs? It depends on the linker, but with most of them, the order does mat

Order of linking libraries

2007-07-06 Thread Satish S
hi, When i try to create an exec linking with multiple libraries, does the order in which i link matter, if there are dependencies across the libs? eg: TEST_EXE: $(LN) -o TEST_EXE -l $(LIB1) $(LIB2) $(LIB3) = Are the libs picked up from right to left or are they all extracted b