diff options
author | Ian Lynagh <igloo@earth.li> | 2008-10-24 11:24:00 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-10-24 11:24:00 +0000 |
commit | 2896564599896f78bddf881e70165b1b299a815c (patch) | |
tree | 2081eb2be3d0a0dbc1d1f28165896d68db8d9836 /docs | |
parent | 88d63c0be4a80714150169fbae34a9fa549aed9d (diff) | |
download | haskell-2896564599896f78bddf881e70165b1b299a815c.tar.gz |
Use pdflatex rather than latex for building
The Windows builder is having problems running ps2pdf, so this works
aroudn the problem.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ext-core/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/ext-core/Makefile b/docs/ext-core/Makefile index cf1c28faef..c4db587289 100644 --- a/docs/ext-core/Makefile +++ b/docs/ext-core/Makefile @@ -15,17 +15,18 @@ endif # General makefile for Latex stuff LATEX=latex \\nonstopmode \\input +PDFLATEX=pdflatex BIBTEX=bibtex dvi: core.dvi ps: core.ps core.ps.gz pdf: core.pdf -core.dvi: core.tex - -$(LATEX) core.tex - $(BIBTEX) core - -$(LATEX) core.tex - -$(LATEX) core.tex +core.pdf: core.tex + $(PDFLATEX) core.tex + $(BIBTEX) core + $(PDFLATEX) core.tex + $(PDFLATEX) core.tex ######## General rules .SUFFIXES: |