This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Re: current directory in Makefile.am
- From: Tom Tromey <tromey at redhat dot com>
- To: "Dahiroc, Patrick" <PDahiroc at ARMILLAIRE dot com>
- Cc: "'Automake (E-mail)" <automake at gnu dot org>
- Date: 30 Dec 2001 18:24:37 -0700
- Subject: Re: current directory in Makefile.am
- References: <4D38F1A1C17DD411931F00508BAF728E014B9502@bethexc01.armillaire.com>
- Reply-to: tromey at redhat dot com
>>>>> "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