ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Berend de Boer <berend@pobox.com>
Cc: ntg-context@ntg.nl
Subject: Re: make files
Date: 08 Jun 2001 19:25:05 +0200	[thread overview]
Message-ID: <87bsnyubny.fsf@dellius.nederware.nl> (raw)
In-Reply-To: <3.0.6.32.20010608103147.00a3a3d0@server-1>

Hans Hagen <pragma@wxs.nl> writes:

> Say that i want to process a couple of files, how does a make file look?
> With: 
> 
> tex : blabla.tex 
>       texexec --pdf blabla 
> 
> 
> and 
> 
> make tex 
> 
> i get 'no rule to make target' so i miss a point there,  

1. tabs are necessary for commands for at least GNU make.

2. spaces before/after colon are not really necessary.

3. This example defines a .tex rule:

-----------
.SUFFIXES:
.SUFFIXES: .pdf .tex

all: blabla.tex

.tex.pdf:
        texexec --pdf $<
----------

You need GNU make for this. For Windows download Cygwin. You have to
anyway if you do more stuff with makefiles.

Complete GNU make manual:

        http://www.gnu.org/manual/make/index.html

Groetjes,

Berend. (-:


  parent reply	other threads:[~2001-06-08 17:25 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
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 [this message]
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=87bsnyubny.fsf@dellius.nederware.nl \
    --to=berend@pobox.com \
    --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).