Re: [linux] Makefile

2006-01-03 Par sujet Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Benoît Barbier wrote: > On Sun, 01 Jan 2006 17:14:16 +0100 > Arnaud Vandyck <[EMAIL PROTECTED]> wrote: [...] >> epstopdf $(addsuffix .eps, $(basename $@)) >> >>et voilà, tu retransformes le nom du fichier avec l'extension eps ;-) > > Oui ça mar

Re: [linux] Makefile

2006-01-02 Par sujet Benoît Barbier
On Sun, 01 Jan 2006 17:14:16 +0100 Arnaud Vandyck <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Benoît Barbier wrote: > > Salut Arnaud, > > Salut Benoît, Bonne année ;-) Merci Arnaud Bonne année à toi aussi ! ;) > > Et si je fait simplement : > > file := $(wi

Re: [linux] Makefile

2006-01-01 Par sujet Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Benoît Barbier wrote: > Salut Arnaud, Salut Benoît, Bonne année ;-) > On Fri, 30 Dec 2005 13:44:10 +0100 > Arnaud Vandyck <[EMAIL PROTECTED]> wrote: [...] >>GRAPHICSPATH = le_repertoire >>file := $(addsuffix .pdf, $(basename $(wildcard $(GRAPHICSPA

Re: [linux] Makefile

2005-12-30 Par sujet Benoît Barbier
Salut Arnaud, On Fri, 30 Dec 2005 13:44:10 +0100 Arnaud Vandyck <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Benoît Barbier wrote: > > Salut à tous, > > > > Pour rappeler une commande dans un makefile il faut mettre : > > make nom_commande? > > En fait, tu p

Re: [linux] Makefile

2005-12-30 Par sujet Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Benoît Barbier wrote: > Salut à tous, > > Pour rappeler une commande dans un makefile il faut mettre : > make nom_commande? En fait, tu peux appeller ta 'fonction' make avec un nom de fichier, à la suite des ':', tu peux appeller les fonctions dépend

[linux] Makefile

2005-12-27 Par sujet Benoît Barbier
Salut à tous, Pour rappeler une commande dans un makefile il faut mettre : make nom_commande? J'ai fait ça dans mon makefile eps2pdf: rm -f $(GRAPHICSPATH)/*.pdf @for eps in $(GRAPHICSPATH)/*.eps ;\ do\ epstopdf $$eps

Re: [linux] Makefile

2004-03-25 Par sujet Jean-Francois Straeten
Hello, On Thu, Mar 25, 2004 at 05:36:08AM +0100, Benoît Barbier wrote: > message d'erreur > conversion des des diagrammes en pdf > for file in img/*.eps ; do epstopdf ile; done > EPSTOPDF 2.7, 2001/03/05 - Copyright 1998-2001 by Sebastian Rahtz et > al.!!! Error: 'ile' does not exist! > EP

[linux] Makefile

2004-03-24 Par sujet Benoît Barbier
Bonjour, Comment fait on une boucle dans un makefile? La commande epstopdf *.eps ne fonctionne pas avec * Par contre ceci fonctionne très bien en ligne de commande: for file in *.eps ; do epstopdf $file; done ### makefile # GRAPHICSPATH = img EPSTOPDF= for file in