From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/4801 Path: main.gmane.org!not-for-mail From: Gilbert van den Dobbelsteen Newsgroups: gmane.comp.tex.context Subject: Re: make files Date: Fri, 8 Jun 2001 11:00:10 +0200 (CEST) Sender: owner-ntg-context@let.uu.nl Message-ID: References: <3.0.6.32.20010608103147.00a3a3d0@server-1> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: main.gmane.org 1035395440 28850 80.91.224.250 (23 Oct 2002 17:50:40 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 23 Oct 2002 17:50:40 +0000 (UTC) Cc: Original-To: Hans Hagen In-Reply-To: <3.0.6.32.20010608103147.00a3a3d0@server-1> Xref: main.gmane.org gmane.comp.tex.context:4801 X-Report-Spam: http://spam.gmane.org/gmane.comp.tex.context:4801 On Fri, 8 Jun 2001, Hans Hagen wrote: > Hi, > > Say that i want to process a couple of files, how does a make file look? > With: > > tex : blabla.tex > texexec --pdf blabla > > > and > If you use gnu make the syntax is very critical: tex: blabla.tex texexec --pdf The colon (:) *must* follow the target (e.g. no spaces), and the execution line(s) must be preceeded by a tab (Ctrl+I, ASCII 9) character. gilbert.