[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: current directory in Makefile.am
From: |
Tom Tromey |
Subject: |
Re: current directory in Makefile.am |
Date: |
30 Dec 2001 18:24:37 -0700 |
>>>>> "Patrick" == Dahiroc, Patrick <address@hidden> 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