This is the mail archive of the automake@gnu.org mailing list for the automake project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: current directory in Makefile.am


>>>>> "Patrick" == Dahiroc, Patrick <PDahiroc@ARMILLAIRE.com> writes:

Patrick> lnklib: mylib.a
Patrick> 	ln -s ./mylib.a $(top_builddir)/lib

Patrick> i dont get the right link when i run 'make lnkdir'.

I think you're invoking `ln -s' incorrectly.
You probably want:

    ln -s `pwd`/mylib.a $(top_builddir)/lib

Maybe you want a `-f' in there too.

Tom


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]