$$,,'` -olex.yy.c
[...]
CLU_SRC = align/clustal.c align/clustaly.y align/clustall.l
CLU_HDR = align/clustal.h
EMB_SRC = sequence/embl.c sequence/embly.y sequence/embll.l
EMB_HDR = sequence/embl.h
FAS_SRC = sequence/fasta.c sequence/fastay.y sequence/fastal.l
FAS_HDR = sequence/fasta.h
[...]
Hope this helps,
Regards.
--
Nicolas Joly
Biological Software and Databanks.
Institut Pasteur, Paris.
fine.
Use `SUBDIRS = . testsuite' in your Makefile.am, this will force the
directory processing order.
--
Nicolas Joly
Biological Software and Databanks.
Institut Pasteur, Paris.
not
substitued at configure time.
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
It would be great to be able to use the same permissions in both
cases.
Did i missed something, or there is no easy way yet ?
Thanks in advance,
R
On Mon, May 31, 2004 at 11:44:49PM +0200, Alexandre Duret-Lutz wrote:
> >>> "Nicolas" == Nicolas Joly <[EMAIL PROTECTED]> writes:
>
> [...]
>
> Nicolas> I just made some testing with one of my projects with automake 1.8.4 /
> Nicolas> libtool
20 2003/04/05 19:32:58))
>
> Thanks, I'm installing the following patch on HEAD and
> branch-1-8. It would be nice to know the difference between
> your setup and Nicolas's.
>
> 2004-04-24 Alexandre Duret-Lutz <[EMAIL PROTECTED]>
>
> * lib/depc
On Thu, Apr 29, 2004 at 12:37:56AM -0500, Albert Chin wrote:
> On Sat, Apr 24, 2004 at 12:22:30PM +0200, Nicolas Joly wrote:
> > With Tru64 cc compiler, shared objects can also be used to make a
> > static library. This mecanism is used in libtool 1.4 series to handle
> > b
ries for the Tru64 compiler.
With Tru64 cc compiler, shared objects can also be used to make a
static library. This mecanism is used in libtool 1.4 series to handle
both shared and static libraries. But, this exception was removed for
libtool 1.5 which now generates 2 separate objects (PIC vs. non PIC)
; This can yield unexpected results if a rule uses a manual
> `VPATH' search as presented before.
>
>VPATH = ..
>all : foo/bar
>command `test -d foo/bar || echo ../`foo/bar
>
> The above `