Re: Implementing Automake in Scheme

2004-08-07 Thread Norman Gray
Greetings, On Thu, 5 Aug 2004, Luis Araujo wrote: I email to ask you for further information about a task in the section GNU Help Wanted in savannah, named Implement automake in Scheme , there is a brief description I didn't know there was such a thing as the `GNU Help Wanted' list, but I've

Why Pay M0re? x1ps

2004-08-07 Thread Sue Cross
User ID: 0 diffuse Date: Fri, 06 Aug 2004 22:49:27 -0400 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary=--96485840200044712 96485840200044712 Content-Type: text/plain; Content-Transfer-Encoding: 7Bit Aspell-user The Best 0n|ine Phar-macy is here. Why pay m0re when

Distributing BUILT_SOURCES dependencies and not target

2004-08-07 Thread Xavier Décoret
Hi, I am compiling a project with a swig generated file. Swig is a tool that takes a foo.i file and generates a foo_wrap.cxx (it can do more but no our concerne here ;-)). In my Makefile.am, I put: line 1: foo_wrap.cxx: foo.i line 2: $SWIG -c++ -python foo.i line 3: line 4: BUILT_SOURCES:

Re: Implementing Automake in Scheme

2004-08-07 Thread Bob Friesenhahn
On Sat, 7 Aug 2004, Norman Gray wrote: On Thu, 5 Aug 2004, Luis Araujo wrote: I email to ask you for further information about a task in the section GNU Help Wanted in savannah, named Implement automake in Scheme , there is a brief description I didn't know there was such a thing as the `GNU

Re: [help-texinfo] Re: translating automake infopage

2004-08-07 Thread Karl Berry
I wonder if tools similar to gettext exist for manuals? FWIW, I have never seen any. Something based on wdiff might be better than straight diff. E.g., does `info' supports several translated versions of a manual? There is no special support for translations in the Texinfo system.

Re: Distributing BUILT_SOURCES dependencies and not target

2004-08-07 Thread Jan Kratochvil
Hi Xavier, On Sat, 07 Aug 2004 16:00:39 +0200, Xavier Dcoret wrote: ... line 4: BUILT_SOURCES: foo_wrap.cxx line 5: libfoo.la_SOURCES: foo_wrap.cxx line 6: line 7: dist_data_DATA: foo.i ... Second question: The problem is that foo_wrap.cxx gets distributed too. And since it is always more

Re: Distributing BUILT_SOURCES dependencies and not target

2004-08-07 Thread Alexandre Duret-Lutz
Xavier == Xavier Décoret [EMAIL PROTECTED] writes: Xavier Hi, Xavier I am compiling a project with a swig generated file. Swig is a tool Xavier that takes a foo.i file and generates a foo_wrap.cxx (it can do more Xavier but no our concerne here ;-)). Xavier In my Makefile.am, I put:

Re: Distributing BUILT_SOURCES dependencies and not target

2004-08-07 Thread Alexandre Duret-Lutz
Jan == Jan Kratochvil [EMAIL PROTECTED] writes: Jan Hi Xavier, Jan On Sat, 07 Aug 2004 16:00:39 +0200, Xavier Décoret wrote: Jan ... line 4: BUILT_SOURCES: foo_wrap.cxx line 5: libfoo.la_SOURCES: foo_wrap.cxx line 6: line 7: dist_data_DATA: foo.i Jan ... Second question: The

the correct rm macro in automake

2004-08-07 Thread Xavier Décoret
Hi, I am writing a install-exec-hook and the appropriate uninstall-hook. The former simply makes a copy of installed lib somewhere else, and the later needs to delete it. For that I simply wrote: uninstall-hook: rm -f foo.so What is the correct variable to ask for removal of a file. Is this