Re: Multiple lex scanners? How?

2007-01-16 Thread Nicolas Joly
$$,,'` -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.

Re: adding subdirectories

2005-03-07 Thread Nicolas Joly
fine. Use `SUBDIRS = . testsuite' in your Makefile.am, this will force the directory processing order. -- Nicolas Joly Biological Software and Databanks. Institut Pasteur, Paris.

installation permissions overwrite with nobase_ prefix ?

2005-03-04 Thread Nicolas Joly
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

Re: automake 1.8.3: Tru64: fix for depcomp

2004-06-02 Thread Nicolas Joly
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

Re: automake 1.8.3: Tru64: fix for depcomp

2004-04-29 Thread Nicolas Joly
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

Re: automake 1.8.3: Tru64: fix for depcomp

2004-04-29 Thread Nicolas Joly
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

Re: automake 1.8.3: Tru64: fix for depcomp

2004-04-24 Thread Nicolas Joly
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)

Re: LONG: Limitations of Make (Portable Shell Programming chapter of Autoconf)

2002-03-25 Thread Nicolas Joly
; 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 `