From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/4800 Path: main.gmane.org!not-for-mail From: Marc van Dongen Newsgroups: gmane.comp.tex.context Subject: Re: make files Date: Fri, 8 Jun 2001 09:53:38 +0100 Sender: owner-ntg-context@let.uu.nl Message-ID: <20010608095337.N19628@cs.ucc.ie> References: <3.0.6.32.20010608103147.00a3a3d0@server-1> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="eJnRUKwClWJh1Khz" X-Trace: main.gmane.org 1035395439 28845 80.91.224.250 (23 Oct 2002 17:50:39 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 17:50:39 +0000 (UTC) Cc: ntg-context@ntg.nl Original-To: Hans Hagen In-Reply-To: <3.0.6.32.20010608103147.00a3a3d0@server-1>; from pragma@wxs.nl on Fri, Jun 08, 2001 at 10:31:47AM +0200 Xref: main.gmane.org gmane.comp.tex.context:4800 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:4800 --eJnRUKwClWJh1Khz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hans Hagen (pragma@wxs.nl) wrote: : Say that i want to process a couple of files, how does a make file look? : With: : : tex : blabla.tex : texexec --pdf blabla : make tex : : i get 'no rule to make target' so i miss a point there, Is there a file called blabla.tex in the current directory. If there isn't this makes sense. Find attached part of a LaTeX Makefile I use to compile my latex with. Regards, Marc van Dongen --eJnRUKwClWJh1Khz Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=Makefile .SUFFIXES : # nullify default suffix rules .SUFFIXES : .pdf .tex .ps .dvi .dvi.ps: @dvips -o $*.ps $*.dvi .tex.ps: @lama $*.dvi @dvips -o $*.ps $*.dvi .tex.pdf: @pdflatex $< .tex.dvi: @latex $*.tex; \ if grep 'LaTeX Warning: Citation .* undefined' $*.log; \ then \ bibtex $*; \ latex $*.tex; \ fi; \ if grep 'LaTeX Warning: Label(s) may have changed' $*.log; \ then \ latex $*.tex; \ fi; \ printf "\a\a\a" ##################################################################### --eJnRUKwClWJh1Khz--