91062fa11b80df02e57b8feffdfd40422d845274
[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 centre.sty \
45 colour.sty \
46 crypto.sty \
47 doafter.sty \
48 doafter.tex \
49 exercise.sty \
50 footnote.sty \
51 mdwkey.sty \
52 mdwlist.sty \
53 mdwmath.sty \
54 mdwref.sty \
55 mdwtab.sty mathenv.sty mtcolour.sty mtcolor.sty \
56 mdwthm.sty mdwmargin.thm \
57 poetry.sty \
58 slowbox.sty \
59 sverb.sty svcolor.sty svcolour.sty svsplit.sty \
60 syntax.sty
61
62 pkglatex_DATA = $(OBJ) mdwtools.tex
63 pkgdoc_DATA = $(DVI) $(PS) $(PDF)
64
65 SUFFIXES = .dtx .tex .dvi .ps
66 define(`run_latex', `rm -rf t.$`'@/ && mkdir t.$`'@/ && \
67 cd t.$`'@/ && \
68 TEXINPUTS=..:$$TEXINPUTS && export TEXINPUTS && \
69 $1 "\def\indexing{n} \nonstopmode \input $<" && \
70 $1 "\def\indexing{y} \nonstopmode \input $<" && \
71 makeindex -s gind.ist $`'*.idx && \
72 $1 "\def\indexing{n} \nonstopmode \input $<" && \
73 mv $`'@ ../ && cd ../ && rm -rf t.$`'@/')
74
75 .dtx.dvi:; run_latex(`latex')
76 .tex.dvi:; run_latex(`latex')
77 .dtx.pdf:; run_latex(`pdflatex')
78 .tex.pdf:; run_latex(`pdflatex')
79 .dvi.ps:; dvips -e0 -o $@ $<
80 clean-local::; rm -rf t.*/
81
82 $(DVI) $(PDF): gpl.tex $(OBJ) mdwtools.tex
83
84 $(wordlist 2,$(words $(OBJ)),$(OBJ)): $(firstword $(OBJ))
85 $(firstword $(OBJ)): $(SRC) mdwtools.ins
86 tex mdwtools.ins
87
88 EXTRA_DIST = $(SRC) $(AUX) $(DVI) $(OBJ) $(PS) $(PDF) \
89 mdwtools.ins Makefile.m4
90
91 MAINTAINERCLEANFILES = $(OBJ) $(DVI) $(PS) $(PDF)
92 CLEANFILES = *.tmp *.aux *.idx *.ilg *.log *.toc *.ind *.lot *.ans
93
94 Makefile.am: Makefile.m4
95 m4 $(srcdir)/Makefile.m4 >Makefile.am.new
96 mv Makefile.am.new $(srcdir)/Makefile.am
97
98 dist-hook::
99 echo $(VERSION) >$(distdir)/RELEASE
100 EXTRA_DIST += auto-version
101
102 EXTRA_DIST += debian/changelog debian/control debian/copyright debian/compat
103 EXTRA_DIST += debian/rules
104
105 .PHONY: dvi
106
107 ##----- That's all, folks ---------------------------------------------------