chiark / gitweb /
Makefile.m4: Build PDF versions of the documents.
[mdwtools] / Makefile.m4
1 ## -*-makefile-*-
2 ##
3 ## Build system for mdwtools
4 ##
5 ## (c) 2002 Mark Wooding
6 ##
7
8 ##----- Licensing notice ----------------------------------------------------
9 ##
10 ## This file is part of the mdwtools LaTeX package collection.
11 ##
12 ## mdwtools is free software; you can redistribute it and/or modify
13 ## it under the terms of the GNU General Public License as published by
14 ## the Free Software Foundation; either version 2 of the License, or
15 ## (at your option) any later version.
16 ##
17 ## mdwtools is distributed in the hope that it will be useful,
18 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ## GNU General Public License for more details.
21 ##
22 ## You should have received a copy of the GNU General Public License
23 ## along with mdwtools; if not, write to the Free Software Foundation,
24 ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 AUTOMAKE_OPTIONS = foreign
27
28 pkglatexdir = ${texmfdir}/tex/latex/${PACKAGE}
29 pkgdocdir = ${texmfdir}/doc/latex/${PACKAGE}
30
31 define(`addsuffix', `patsubst(`$1', `\>', `$2')')
32 define(`BASE', `\
33         at centre cmtt colour crypto doafter exercise footnote mdwkey \
34         mdwlist mdwmath mdwref mdwtab mdwthm poetry slowbox sverb syntax')
35
36 AUX = mdwtools.tex gpl.tex
37 SRC = addsuffix(BASE, `.dtx')
38 DVI = addsuffix(BASE, `.dvi') mdwtools.dvi
39 PS = addsuffix(BASE, `.ps') mdwtools.ps
40 PDF = addsuffix(BASE, `.pdf') mdwtools.pdf
41 OBJ = \
42         at.sty \
43         cmtt.sty mttcmtt.fd mttenc.def \
44         colour.sty \
45         crypto.sty \
46         doafter.sty \
47         doafter.tex \
48         exercise.sty \
49         footnote.sty \
50         mdwkey.sty \
51         mdwlist.sty \
52         mdwmath.sty \
53         mdwref.sty \
54         mdwtab.sty mathenv.sty mtcolour.sty mtcolor.sty \
55         mdwthm.sty mdwmargin.thm \
56         poetry.sty \
57         slowbox.sty \
58         sverb.sty svcolor.sty svcolour.sty svsplit.sty \
59         syntax.sty
60
61 pkglatex_DATA = $(OBJ) mdwtools.tex
62 pkgdoc_DATA = $(DVI) $(PS) $(PDF)
63
64 SUFFIXES = .dtx .tex .dvi .ps
65 define(`run_latex', `latex "\def\indexing{n} \nonstopmode \input $<"
66         latex "\def\indexing{y} \nonstopmode \input $<"
67         makeindex -s gind.ist $`'*.idx
68         latex "\def\indexing{n} \nonstopmode \input $<"')
69
70 .dtx.dvi:
71         run_latex
72 .tex.dvi:
73         run_latex
74 .dvi.ps:
75         dvips -e0 -o $@ $<
76 .ps.pdf:
77         ps2pdf $< $@
78
79 $(DVI): gpl.tex $(OBJ) mdwtools.tex
80
81 $(OBJ): $(SRC) mdwtools.ins
82         tex mdwtools.ins
83
84 EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) $(PS) mdwtools.ins Makefile.m4
85
86 MAINTAINERCLEANFILES = $(OBJ) $(DVI)
87 CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans
88
89 Makefile.am: Makefile.m4
90         m4 $(srcdir)/Makefile.m4 >Makefile.am.new
91         mv Makefile.am.new $(srcdir)/Makefile.am
92
93 .PHONY: dvi
94
95 ##----- That's all, folks ---------------------------------------------------