ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Marc van Dongen <dongen@cs.ucc.ie>
Cc: ntg-context@ntg.nl
Subject: Re: make files
Date: Fri, 8 Jun 2001 09:53:38 +0100	[thread overview]
Message-ID: <20010608095337.N19628@cs.ucc.ie> (raw)
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

[-- Attachment #1: Type: text/plain, Size: 440 bytes --]

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

[-- Attachment #2: Makefile --]
[-- Type: text/plain, Size: 900 bytes --]

.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"

#####################################################################

  reply	other threads:[~2001-06-08  8:53 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-06-08  8:31 Hans Hagen
2001-06-08  8:53 ` Marc van Dongen [this message]
2001-06-08  9:00 ` Gilbert van den Dobbelsteen
2001-06-08  9:25 ` Taco Hoekwater
2001-06-08  9:38   ` Marc van Dongen
     [not found] ` <Pine.LNX.4.30.0106081058490.20802-100000@panter.soci.aau.d k>
2001-06-08  9:36   ` Hans Hagen
2001-06-08  9:56     ` Marc van Dongen
2001-06-09  9:35     ` David Antos
2001-06-10 20:20       ` Hans Hagen
2001-06-11  5:53       ` Gilbert van den Dobbelsteen
2001-06-11 11:12         ` Marc van Dongen
2001-06-08 17:25 ` Berend de Boer
2001-06-09  9:34 ` Uwe Koloska
2001-06-10 20:10   ` Hans Hagen
2001-06-11  7:21     ` Berend de Boer
2001-06-11 11:09     ` Marc van Dongen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20010608095337.N19628@cs.ucc.ie \
    --to=dongen@cs.ucc.ie \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).