Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7281398

Browse files
committed
Must run jadetex three times to get correct page numbers. Add support for
pdfjadetex.
1 parent c1f5ed6 commit 7281398

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

doc/src/sgml/Makefile

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
#
1010
# IDENTIFICATION
11-
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.29 2001/02/03 19:03:26 petere Exp $
11+
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.30 2001/02/04 12:23:11 petere Exp $
1212
#
1313
#----------------------------------------------------------------------------
1414

@@ -107,20 +107,27 @@ $(addsuffix .html, $(ALLBOOKS)): %.html: %.sgml $(ALLSGML)
107107

108108
# RTF to allow minor editing for hardcopy
109109
$(addsuffix .rtf, $(ALLBOOKS)): %.rtf: %.sgml $(ALLSGML)
110-
$(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(PDSL) -t rtf book-decl.sgml $<
110+
$(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(PDSL) -t rtf -V rtf-backend book-decl.sgml $<
111111

112112
# TeX and DVI
113113
$(addsuffix .tex, $(ALLBOOKS)): %.tex: %.sgml $(ALLSGML)
114-
$(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(PDSL) -t tex book-decl.sgml $<
114+
$(JADE) $(JADEFLAGS) $(SGMLINCLUDE) -d $(PDSL) -t tex -V tex-backend book-decl.sgml $<
115115

116116
%.dvi: %.tex
117117
jadetex $<
118118
jadetex $<
119+
jadetex $<
119120

120121
# Postscript from TeX
121122
%.ps: %.dvi
122123
dvips -o $@ $<
123124

125+
%.pdf: %.tex
126+
pdfjadetex $<
127+
pdfjadetex $<
128+
pdfjadetex $<
129+
130+
124131
# Graphics
125132

126133
%.gif:

0 commit comments

Comments
 (0)